java中,如何实现集合的升序和降序排列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中,如何实现集合的升序和降序排列相关的知识,希望对你有一定的参考价值。
数字排列就行不
单纯的字符串或者数字排列可用Collections.sort(object o)方法,这样方便。如果是要对对象中的某一进行排序,则可实现Comparator接口,复写其中的Compare方法;然后调用Collections.sort(object 0 , Comparator c)方法;
说的只是思路,具体问题可以查看帮助文档。 参考技术A 写sql语句的时候定义升降序排列,就行了。如果单纯用Java代码实现的话,可以用冒泡排序,代码比较简单:
publicclassBubbleSort
publicvoidsort(int[]a)
inttemp=0;
for(inti=a.length-1;i>0;--i)
for(intj=0;j<i;++j)
if(a[j+1]<a[j])
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
参考技术B for (int i = 0; i < list.size(); i++)
for (int j = i + 1; j < list.size(); j++)
if (list.get(i) > list.get(j))
int temp = list.get(i);
list.set(i, list.get(j));
list.set(j, temp);
System.out.println("升序:" + list);
for (int i = 0; i < list.size(); i++)
for (int j = i + 1; j < list.size(); j++)
if (list.get(i) < list.get(j))
int temp = list.get(i);
list.set(i, list.get(j));
list.set(j, temp);
System.out.println("降序:" + list);
XQuery 按升序和降序排列
【中文标题】XQuery 按升序和降序排列【英文标题】:XQuery order by ascending and descending 【发布时间】:2011-08-25 11:22:09 【问题描述】:在 XQuery 中,如何按升序和降序排序?
我从教程中得到了以下内容:
for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title
return $x/title
会不会
for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title ascending
return $x/title
【问题讨论】:
【参考方案1】:是的,您可以在order by..
表达式的末尾使用ascending
(默认)或descending
。
这是 W3C XQuery 规范相关部分的链接:
http://www.w3.org/TR/xquery/#doc-xquery-OrderSpec
【讨论】:
so it would befor $x in doc("books.xml")/bookstore/book where $x/price>30 order by increasing $x/title return $x/title 或者是 $x in doc("books.xml")/bookstore/book where $x/price>30 order by $x/title return $x/title 升序 我写了“在表达式之后”,我的意思是这样的:... order by $x/title ascending ...
(就像你在问题中写的那样,这是正确的语法)。【参考方案2】:
查看我对this question的回复。代码演示了降序排序。
对于升序排序,ascending
关键字可以省略。
【讨论】:
以上是关于java中,如何实现集合的升序和降序排列的主要内容,如果未能解决你的问题,请参考以下文章