mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 04:31:55 +08:00
Fix some comments.
This commit is contained in:
@ -42,8 +42,8 @@ function bubbleSortWithFlag(nums) {
|
||||
/* Driver Code */
|
||||
const nums = [4, 1, 3, 1, 5, 2];
|
||||
bubbleSort(nums);
|
||||
console.log('排序后数组 nums =', nums);
|
||||
console.log('冒泡排序完成后 nums =', nums);
|
||||
|
||||
const nums1 = [4, 1, 3, 1, 5, 2];
|
||||
bubbleSortWithFlag(nums1);
|
||||
console.log('排序后数组 nums =', nums1);
|
||||
console.log('冒泡排序完成后 nums =', nums1);
|
||||
|
||||
@ -22,4 +22,4 @@ function insertionSort(nums) {
|
||||
/* Driver Code */
|
||||
const nums = [4, 1, 3, 1, 5, 2];
|
||||
insertionSort(nums);
|
||||
console.log('排序后数组 nums =', nums);
|
||||
console.log('插入排序完成后 nums =', nums);
|
||||
|
||||
Reference in New Issue
Block a user