andy Space

博客园 首页 新随笔 联系 订阅 管理

2007年5月2日 #

摘要: import java.util.Iterator; public class LinkList implements Iterable { Data first; Data last; Data current; int count; public LinkList() { } public boolean add(V obj) { boolean ret = false; Dat... 阅读全文
posted @ 2007-05-02 23:10 andyliang 阅读(548) 评论(0) 推荐(0)