0
我做在Java中使用鏈表和LinearNode類堆棧和我有一個問題:棧鏈表與初始容量
........
public BoundedStackADTLinkedImpl() {
count = 0;
top = null;
}
public BoundedStackADTLinkedImpl(int stackCapacity) {
//I dont know how to do a builder using LinearNode with a initial Capacity
}
public BoundedStackADTLinkedImpl(int stackCapacity, T... initialContent) {
//Here I have the same problem.
count = 0;
top = new LinearNode<T>();
for (T Vi : initialContent) {
push(Vi);
}
..... ...
謝謝!!!
請多說一點你的問題。 – demongolem
請提供最小的可測試代碼。 – Braj
LinkedList只有你實際使用的節點,所以初始容量沒有意義。 –