博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
冒泡排序
阅读量:5086 次
发布时间:2019-06-13

本文共 756 字,大约阅读时间需要 2 分钟。

public static void main(String[] args) {        int[] score =new int[] { 88, 35, 75, 87, 20, 90, 2, 756 };        for (int i = 0; i < score.length - 1; i++) { // 最多做n-1趟排序                        for (int j = 0; j < score.length - i - 1; j++) { // 对当前无序区间score[0......length-i-1]进行排序(j的范围很关键,这个范围是在逐步缩小的)                                if (score[j] > score[j + 1]) { // 把小的值交换到后面                    int temp = score[j];                    score[j] = score[j + 1];                    score[j + 1] = temp;                }            }                    }        System.out.print("最终排序结果:");        for (int a = 0; a < score.length; a++) {            System.out.print(score[a] + "\t");        }    }}

 

转载于:https://www.cnblogs.com/bingo584235807/p/6123282.html

你可能感兴趣的文章
[转]jsbsim基础概念
查看>>
DIV和SPAN的区别
查看>>
第一次使用cnblogs
查看>>
C#语法糖之 session操作类 asp.net
查看>>
2015 Multi-University Training Contest 3
查看>>
使用Gitblit 在windows 上部署你的Git Server
查看>>
217. Contains Duplicate
查看>>
vue2.0 关于Vue实例的生命周期
查看>>
jenkins 更换主数据目录
查看>>
Silverlight中恼人的g.i.cs错误
查看>>
SQLite 数据库增删改查
查看>>
<s:iterator>的status
查看>>
C++入门--1.0输入输出
查看>>
让搭建在Github Pages上的Hexo博客可以被Google搜索到
查看>>
Introduction to 3D Game Programming with DirectX 12 学习笔记之 --- 第十四章:曲面细分阶段...
查看>>
在WPF控件上添加Windows窗口式调整大小行为
查看>>
背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu
查看>>
打开3389
查看>>
React学习记录
查看>>
nginx常见内部参数,错误总结
查看>>