2017年8月7日

摘要: 1 package Test2; 2 3 //排序:Sort 4 public class Sort 5 { 6 public static void main(String[] args) 7 { 8 int[] data = {4,3,5,1,2}; //声明需要排序的数组 9 ... 阅读全文
posted @ 2017-08-07 02:53 loyer 阅读(153) 评论(0) 推荐(0)
 
摘要: package Test2; //链表:LinkList public class LinkList { public static void main(String[] args) { } } class Link { class Node { private int key; //定义链表结点的存储数据 ... 阅读全文
posted @ 2017-08-07 02:52 loyer 阅读(119) 评论(0) 推荐(0)
 
摘要: package Test2; //算法:Algorithmpublic class Algorithm{ public static void main(String[] args) { Exhaustivity ex = new Exhaustivity(); //实例化对象 ex.deal(); 阅读全文
posted @ 2017-08-07 02:51 loyer 阅读(93) 评论(0) 推荐(0)