摘要: 单链表的实现,定义为SingleLinkedListclass Node{ //结点Node类 public AnyType data; public Node next; public Node(AnyType d,Node next ){ this.data=d; t... 阅读全文
posted @ 2013-10-12 22:11 IT专业户 阅读(324) 评论(0) 推荐(0)
摘要: 重写Linkedlist类,改写为MyLinkedList,未继承Iterable类。public class MyLinkedList { private int theSize; private Node beginMarker; private Node endMarker... 阅读全文
posted @ 2013-10-12 20:49 IT专业户 阅读(230) 评论(0) 推荐(0)
摘要: Schema中的elementFormDefault elementFormDefault取值:qualified 或者 unqualified在http://www.velocityreviews.com/forums/t292290-xsd-what-is-elementformdefault-... 阅读全文
posted @ 2013-10-12 18:26 IT专业户 阅读(318) 评论(0) 推荐(0)
摘要: 重写ArrayList类,为防止冲突,重写为MyArrayList,未继承Iterable类。public class MyArrayList{ int N=10; AnyType a[]; //定义一个数组,未分配空间 int theSize;... 阅读全文
posted @ 2013-10-12 17:25 IT专业户 阅读(354) 评论(0) 推荐(0)