摘要: public class 冒泡排序 { /** * sample maopao sort * @param num */ public static int[] sort(int[] num) { int middle; int[] returnNum=new int[num.length]; for(int i=0;i<num.length;i++) { returnNum[i]=num[i]; } for(int i=0;i<... 阅读全文
posted @ 2012-09-02 21:11 stopit 阅读(369) 评论(0) 推荐(0)