Fix some comments.

This commit is contained in:
krahets
2023-05-22 23:13:54 +08:00
parent f6d290d903
commit 89a9741e9e
6 changed files with 9 additions and 9 deletions

View File

@ -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);

View File

@ -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);