如何在java中对数组列表进行冒泡排序?
如何在java中对数组列表进行冒泡排序?
我想对数组列表进行冒泡排序。或者是否有更好的方法对数组列表或列表进行排序。
How to bubble sort a arraylist in java?
i want to bubble sort an arraylist. or is there a better way to sort an arraylist or list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是:使用标准库内置的排序。
例如, http://download.oracle.com/javase/1.4.2/docs/api/java/util/Collections.html#sort%28java.util.List%29
Yes: use the sorting that is built into the standard library.
For example, http://download.oracle.com/javase/1.4.2/docs/api/java/util/Collections.html#sort%28java.util.List%29
为了对 ArrayList 进行排序,我使用了 Collections.sort(),将其包含在 ArrayList 类中。
例如。
我想说的是,要对它进行排序
,这将对 ArrayList 进行排序
To sort an ArrayList I used the Collections.sort(), included the in the ArrayList class.
eg.
To sort it I would say,
and this would sort the
ArrayList