mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-06 14:27:26 +08:00
add chapter_sorting by dart (#366)
* add chapter_sorting by dart * fixed style of dart and bug mentioned before * alter min value of dart * Update radix_sort.dart --------- Co-authored-by: Yudong Jin <krahets@163.com>
This commit is contained in:
@ -51,6 +51,6 @@ public class bubble_sort {
|
||||
|
||||
int[] nums1 = { 4, 1, 3, 1, 5, 2 };
|
||||
bubbleSortWithFlag(nums1);
|
||||
System.out.println("冒泡排序完成后 nums1 = " + Arrays.toString(nums));
|
||||
System.out.println("冒泡排序完成后 nums1 = " + Arrays.toString(nums1));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user