摘要:
1.链表接口定义package com.ncs.datastructure.linklist;public interface ILinkList { /** * 链表是否为空 * @return */ public abstract boolean isEmpty(); /** * 在链表... 阅读全文
posted @ 2011-09-25 21:21 袁立 阅读(285) 评论(0) 推荐(0)
|
摘要:
1.链表接口定义package com.ncs.datastructure.linklist;public interface ILinkList { /** * 链表是否为空 * @return */ public abstract boolean isEmpty(); /** * 在链表... 阅读全文
posted @ 2011-09-25 21:21 袁立 阅读(285) 评论(0) 推荐(0) |
||