Skip to content

Commit 5785a33

Browse files
committed
fix
1 parent f812c7b commit 5785a33

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Algorithm_full_features/sort/QuickSortThreeWays.java renamed to Algorithm_full_features/sort/QuickSortThreeWaysPartition.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* with 3-way partitioning.
55
*
66
*/
7-
public class QuickSortThreeWays {
8-
private QuickSortThreeWays() {}
7+
public class QuickSortThreeWaysPartition {
8+
private QuickSortThreeWaysPartition() {}
99

1010
public static void sort(Comparable[] a) {
1111
StdRandom.shuffle(a);
@@ -66,7 +66,7 @@ private static void show(Comparable[] a) {
6666
// test
6767
public static void main(String[] args) {
6868
String[] a = StdIn.readAllStrings();
69-
QuickSortThreeWays.sort(a);
69+
QuickSortThreeWaysPartition.sort(a);
7070
show(a);
7171
}
7272
}

0 commit comments

Comments
 (0)