0
想知道我的刪除操作有什麼問題。是,我必須用我的教授聲明的變量刪除數組LN
LN** map = nullptr;
對我工作的分配,使用簡單的數據類型是不是一種選擇。
class LN {
public:
LN() : next(nullptr) {}
LN (const LN& ln) : value(ln.value), next(ln.next) {}
LN (int v, LN* n = nullptr) : value(v), next(n) {}
int value;
LN* next;
};
int main()
{
LN** array = nullptr;
array = new LN*[5];
int j=1;
for (int i=0; i<5; ++i) {
array[i] = new LN();
array[i] = new LN(j++, array[i]);
array[i] = new LN(j++, array[i]);
}
// What I think should work, but doesn't.
for (int i=0; i<5; ++i) {
delete array[i];
}
delete[] array;
array = nullptr;
return 0;
}
加入析構函數在這種情況下,有一個非常明顯的錯誤,但你應該解釋*如何*究竟它不工作(你有什麼期望發生與實際發生的情況)。 – jerry