线性表之--顺序表
摘要:
1 package cn.njupt.mdj; 2 3 class linerTable<E>{ 4 private Object[] data = null; 5 private int capacity; 6 private int current; 7 8 //默认大小 9 public li 阅读全文
posted @ 2012-08-11 16:55 pony1223 阅读(188) 评论(0) 推荐(0) 编辑