JAVA的链表我的实现(JAVA的引用其实就是隐性的指针)

package com.alist; class alist<K> { private Object val; private alist<K> head,now,temp,next; private int length = 0; public alist() { head = now = this; } public Object get(int Count)
相关文章
相关标签/搜索