摘要:
单链表的实现,定义为SingleLinkedListclass Node{ //结点Node类 public AnyType data; public Node next; public Node(AnyType d,Node next ){ this.data=d; t... 阅读全文
摘要:
重写Linkedlist类,改写为MyLinkedList,未继承Iterable类。public class MyLinkedList { private int theSize; private Node beginMarker; private Node endMarker... 阅读全文
摘要:
Schema中的elementFormDefault elementFormDefault取值:qualified 或者 unqualified在http://www.velocityreviews.com/forums/t292290-xsd-what-is-elementformdefault-... 阅读全文
摘要:
重写ArrayList类,为防止冲突,重写为MyArrayList,未继承Iterable类。public class MyArrayList{ int N=10; AnyType a[]; //定义一个数组,未分配空间 int theSize;... 阅读全文