博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA数据结构--选择排序
阅读量:5985 次
发布时间:2019-06-20

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

可以用JAVA进行选择排序:

1 // selectSort.java 2 // demonstrates selection sort 3 // to run this program: C>java SelectSortApp 4  5 package SelectSortApp; 6  7 class ArraySel 8    { 9    private long[] a;                 // ref to array a10    private int nElems;               // number of data items11 //--------------------------------------------------------------12    public ArraySel(int max)          // constructor13       {14       a = new long[max];                 // create the array15       nElems = 0;                        // no items yet16       }17 //--------------------------------------------------------------18    public void insert(long value)    // put element into array19       {20       a[nElems] = value;             // insert it21       nElems++;                      // increment size22       }23 //--------------------------------------------------------------24    public void display()             // displays array contents25       {26       for(int j=0; j

 

转载地址:http://ozylx.baihongyu.com/

你可能感兴趣的文章
Spring Boot JDBC 连接数据库
查看>>
字符串与数组互转
查看>>
断线重连
查看>>
CSS3伪类与伪元素的区别及注意事项
查看>>
(转)Unity优化之减少Drawcall
查看>>
第六周作业——建立订货系统的用例模型
查看>>
LINQ :First、FirstOrDefault使用;Max、Min使用
查看>>
【专注力管理:让你的努力更高效】总结
查看>>
[结题报告]10055 - Hashmat the Brave Warrior Time limit: 3.000 seconds
查看>>
[HDU]1405The Last Practice
查看>>
2018总结-->2019新目标
查看>>
Ubuntu 系统下安装gcc-arm-none-eabi编译STM32工程
查看>>
Python3找出List中最大/最小的N个数及索引
查看>>
C# GetType与typeof
查看>>
Eclipse下配置主题颜色
查看>>
Form表单的action和onSubmit示例介绍
查看>>
Centos7下安装部署MXNET
查看>>
.net初学之定义委托、事件
查看>>
[对抗训练]“中国菜刀”安装,20180222
查看>>
关于进程和线程的问题
查看>>