單鏈表基礎面試題(下篇)

1.刪除鏈表中的重複結點 ListNode* deleteDuplication(ListNode* pHead)//刪除鏈表中重複的結點 { struct ListNode* cur = pHead; struct ListNode* prev = NULL; struct ListNode* next = cur->next; if (cur == NULL || cur->next
相關文章
相關標籤/搜索