首页 > 学院 > 开发设计 > 正文

冒泡排序

2019-11-14 11:14:41
字体:
来源:转载
供稿:网友
public class BubbleSortDemo{ public static void main( String [] args){ int [] sortNumber={12,34,67,34,65,90,86,76}; bubbleSort(sortNmber); //结果为 12,34,34,65,67,76,86,90 } public static void bubbleSort(int []sort){ //外循环控制次数 for(int i = 0;i<sort.length-1;i++){ //内循环进行排序 for(int j = 0;j<sort.length-1;i++){ if(sort[j]>sort[j+1]{ int temp=sort[j]; sort[j]=sort[j+1]; sort[j+1]=temp; } } }}
上一篇:Java基础--数组

下一篇:python反射

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表