posted on 2009-06-01 23:47 intrl 阅读(959) 评论(2) 编辑 收藏 引用 所属分类: 数据结构与算法
貌似这个不是按地址的吧 回复 更多评论
public static void main(String[] args) { int[] a={3,7,4,6,2,9}; Test t=new Test(); int[] addr=t.GetAddrSort(a); for(int i=0;i<addr.length;i++) { System.out.print(addr[i]+" "); } } 此段代码的输出结果为: 5 1 3 2 0 4 这就是按地址排序啊,递减 @无名 回复 更多评论
Powered by: IT博客 Copyright © intrl