2016年3月28日

摘要: //求x和y的最大公约数 xy) { int t = x; x = y; y = t; } if(x==0) { return y; } return susu(y%x, x); } //暴力搜索O(n) int susu1(int x, int y) { if... 阅读全文
posted @ 2016-03-28 14:58 长456风 阅读(231) 评论(0) 推荐(0) 编辑
摘要: package numCombine;import java.util.Arrays;import java.util.Collections;import java.util.Comparator;/** * n个数连接得到最小或最大的多位整数(携程) * @author root * */p... 阅读全文
posted @ 2016-03-28 12:36 长456风 阅读(248) 评论(0) 推荐(0) 编辑
摘要: package quickSort;/** * 快速排序 * @author root * */public class QuickSort { static int[] data = {0,2,4,5,3,1,7,6}; public static void main(String[] ar... 阅读全文
posted @ 2016-03-28 12:30 长456风 阅读(223) 评论(0) 推荐(0) 编辑

导航