gpt4 book ai didi

bubble-sort - 冒泡排序输出不正确

转载 作者:行者123 更新时间:2023-12-02 20:44:30 25 4
gpt4 key购买 nike

这是我的冒泡排序代码,但我很困惑为什么输出仅显示 125

int secondArray[] = {0, 1, 5, 2};
int num;

for (int i = 1; i < secondArray.length; i++) {
for (int j = 0; j < secondArray.length - i; j++) {
if (secondArray[j] > secondArray[j + 1]) {
num = secondArray[j];
secondArray[j] = secondArray[j + 1];
secondArray[j + 1] = num;
}
}
System.out.print(secondArray[i]);
}

最佳答案

这是因为您是从 1 -> int i = 1; 迭代,但数组是从 0 开始的,所以 System.out.print(secondArray[i]); 永远没有机会显示第一个元素。

关于bubble-sort - 冒泡排序输出不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51072700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com