博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排序之 -- 直接选择排序
阅读量:5908 次
发布时间:2019-06-19

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

示意:

初始数组资源 【63        4        24        1        3        15】

第一趟排序后 【15        4        24        1        3】     63

第二趟排序后 【15        4        1          3】    24       63
第三趟排序后 【4          1        3】      15      24       63
第四趟排序后 【1          3】     4         15      24       63
第五趟排序后 【1】       3        4         15      24       63

 

实例:

1 /** 2  * 直接选择排序算法实例 3  *  4  * @author Li Zhong Wei 5  */ 6 public class SelectSort { 7     public static void main(String[] args) { 8         // 创建一个数组,这个数组元素是乱序的 9         int[] array = { 63, 4, 24, 1, 3, 15 };10         // 创建直接排序类的对象11         SelectSort sorter = new SelectSort();12         // 调用排序对象的方法将数组排序13         sorter.sort(array);14     }15     16     /**17      *直接选择排序法18      * 19      * @param array20      *            要排序的数组21      */22     public void sort(int[] array) {23         int index;24         for (int i = 1; i < array.length; i++) {25             index = 0;26             for (int j = 1; j <= array.length - i; j++) {27                 if (array[j] > array[index]) {28                     index = j;29                 }30             }31             // 交换在位置array.length-i和index(最大值)两个数32             int temp = array[array.length - i];// 把第一个元素值保持到临时变量中33             array[array.length - i] = array[index];// 把第二个元素值保存到第一个元素单元中34             array[index] = temp;// 把临时变量也就是第一个元素原值保持到第二个元素中35         }36         showArray(array);// 输出直接选择排序后的数组值37     }38     39     /**40      * 显示数组所有元素41      * 42      * @param array43      *            要显示的数组44      */45     public void showArray(int[] array) {46         for (int i : array) {
// foreach格式遍历数组47 System.out.print(" >" + i);// 输出每个数组元素值48 }49 System.out.println();50 }51 }

 

转载于:https://www.cnblogs.com/zhuyongzhe/p/7046251.html

你可能感兴趣的文章
JS 自定义函数 定义参数默认值
查看>>
IRC 聊天工具(xchat,chatzilla,pidgin)入门教程
查看>>
fixed 计算位置
查看>>
API自动化测试利器——Postman
查看>>
Redis配置
查看>>
DO280中OpenShift的镜像管理
查看>>
kafka 监控之Mx4jLoader
查看>>
UE4 行走/飞行切换,上升下降
查看>>
wireshark windows 编译
查看>>
RidolIDE+TPM安装运行和Ridol常见bug处理(迅捷版)
查看>>
如何交叉编译 移植 QT
查看>>
模板特化疑问
查看>>
赵海峰:站在电商平台上的互联网金融架构实践
查看>>
-webkit-animation- 实践
查看>>
滚动的标签
查看>>
XBImageFilters
查看>>
StackBox
查看>>
观察者模式
查看>>
The network connection was lost.
查看>>
android绑定Service失败原因
查看>>