摘要: package sort;public class HuiSu { public static void main(String args[]){ int data[][]={{1,1,1,1,1,1,1,1,1}, //10行9列的迷宫 ... 阅读全文
posted @ 2015-08-02 23:25 吕布布1995 阅读(418) 评论(0) 推荐(0) 编辑
摘要: package sort;import java.util.Arrays;public class MergerSort { public static int arr1[]=new int[10]; public static int arr2[]=new int[10]; pu... 阅读全文
posted @ 2015-08-02 10:50 吕布布1995 阅读(88) 评论(0) 推荐(0) 编辑
摘要: package sort;import java.util.Scanner;public class ShellSort { public static int arr[]; static{ System.out.println("Please enter the arra... 阅读全文
posted @ 2015-08-02 10:05 吕布布1995 阅读(122) 评论(0) 推荐(0) 编辑