int main() {
LinkedList list;
for (int i = 1; i <= 5; i++)
list.appendFront(i);
vector<int> list_copy;
Node *temp = list.head;
int i = 0;
while (temp->next)
{
list_copy[i] = temp->info; //segmentation fault at this line
temp = temp->next;
i++;
}
for (auto i : list_copy)
cout << i;
}
请注意,我正在使用我的链接列表实现,效果很好。
vector<int> list_copy;
在此行