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)
相關文章
相關標籤/搜索