gpt4 book ai didi

c++ - 删除单向链表的所有节点

转载 作者:行者123 更新时间:2023-11-28 02:52:26 24 4
gpt4 key购买 nike

我想通过传递 headPtr 来删除单向链表中存在的所有节点。下面是我的代码。

void deleteList(node *head) {
node *curPtr, *temp;
curPtr = temp = head;

while ( curPtr != NULL ) {

temp = curPtr;
curPtr = curPtr->next;
delete temp;
}
head = curPtr;
}

对于具有以下节点的列表,1个2个3个4个5个0我得到以下输出

0121323212323424242422424242424242424

我的代码正确吗?有更好的方法吗?

问候

最佳答案

可能有更好的方法来做到这一点。通过递归调用,

void deleteList(node *head) {
if(head!=null){
deleteList(head->next);
delete head;
}
}

希望对您有所帮助..

关于c++ - 删除单向链表的所有节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22740974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com