2018年8月6日

摘要: 冒泡排序,就像一个个吐泡泡一样,每次经过一个循环,确定一个最大或最小的数。 public class BubbleSort { public static void main(String[] args) { int arr[] = {1,5,9,8,7,6,3,10}; bubblesort(ar 阅读全文
posted @ 2018-08-06 22:23 刘文涛123 阅读(72) 评论(0) 推荐(0) 编辑

导航