Skip to content

Commit

Permalink
Update RunAllSorts.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Apr 6, 2021
1 parent 2ad3081 commit 7941e86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/threads/RunAllSorts.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public RunAllSorts(ArrayVisualizer arrayVisualizer) {
this.arrayVisualizer = arrayVisualizer;
this.allSortThreads = new ArrayList<>();
this.allSortThreads.add(new RunExchangeSorts(arrayVisualizer));
this.allSortThreads.add(new RunQuickSorts(arrayVisualizer));
this.allSortThreads.add(new RunSelectionSorts(arrayVisualizer));
this.allSortThreads.add(new RunInsertionSorts(arrayVisualizer));
this.allSortThreads.add(new RunMergeSorts(arrayVisualizer));
Expand Down

0 comments on commit 7941e86

Please sign in to comment.