摘要: packagecom.zhb.corejava.util;publicclassStack{privateE[]elementData;privateinttop;privateintcount;@SuppressWarnings("unchecked")publicStack(intsize){t... 阅读全文
posted @ 2015-04-14 22:50 win24 阅读(107) 评论(0) 推荐(0) 编辑
摘要: class Queue { private int front;//队头 private int rear;//队尾 private int count;//队元素个数 private int queueSize;//队长度 private T[] object; publ... 阅读全文
posted @ 2015-04-14 22:44 win24 阅读(88) 评论(0) 推荐(0) 编辑