Java、Python冒泡排序法(2)

2023-09-10 来源:飞速影视
冒泡排序算法JAVA实现代码
import com.jiajia.ArrayUtil.*; // 按包名导入
public class BubbleSortMain {
public static void main(String[] args) {
int[] arr = {3,43,38,5,47,15,36,26,27,2,44,4,50,19,38};
bubbleSort(arr);
ArrayUtil.print(arr);
}
/**
* 冒泡排序
*/
private static void bubbleSort(int[] arr) {
for (int i = 0; i < arr.length; i ) {
for (int j = 0; j < arr.length - i -1; j ) { // 这里说明为什么需要-1
if (arr[j] > arr[j 1]) {
int temp = arr[j];
arr[j] = arr[j 1];
arr[j 1] = temp;
}
}
}
}
}
冒泡排序算法python实现代码
def bubble_sort(the_list):
i = 0
while i < len(the_list):
j = 0
while j < len(the_list)-1:
print(the_list[j],the_list[j 1])
if the_list[j] > the_list[j 1]:
the_list[j], the_list[j 1] = the_list[j 1], the_list[j]
j = j 1
print(the_list)
print("======" str(the_list))
i = i 1
return the_list
if __name__ == "__main__":
the_list = [3, 43, 38, 5, 47, 15, 36, 26, 27, 2, 44, 4, 50, 19, 38]
相关影视
合作伙伴
本站仅为学习交流之用,所有视频和图片均来自互联网收集而来,版权归原创者所有,本网站只提供web页面服务,并不提供资源存储,也不参与录制、上传
若本站收录的节目无意侵犯了贵司版权,请发邮件(我们会在3个工作日内删除侵权内容,谢谢。)

www.fs94.org-飞速影视 粤ICP备74369512号