前言
与之前写过的单向链表思想一样,只不过换了一种语言,在此练习记录一下
链表接口
1 | public interface SListMethod<E> { |
具体实现类
1 | public class SList<E> implements SListMethod<E> { |
谨此在这里记录学习过程~
十年一开花的忍者神龟
与之前写过的单向链表思想一样,只不过换了一种语言,在此练习记录一下
1 | public interface SListMethod<E> { |
1 | public class SList<E> implements SListMethod<E> { |
谨此在这里记录学习过程~