我必须在同一个函数中重用这段代码,但它不会工作,因为 res1->nextPtr 已经在链表的末尾。有没有办法将它重置为链表的“头”?
do
{
res1 = res1->nextPtr;
}while(res1 != NULL);
我必须在同一个函数中重用这段代码,但它不会工作,因为 res1->nextPtr 已经在链表的末尾。有没有办法将它重置为链表的“头”?
do
{
res1 = res1->nextPtr;
}while(res1 != NULL);