LeetCode 203:Remove Linked List Elements
ListNode* removeElements(ListNode* head, int val) { if (head == NULL) return head; ListNode *p = head; while (p && p->val==val) { p = p->next; } if (p) { ListNode *q=p; ListNode *temp = p->next; while (temp) { if (temp->val != val) { q->next = temp; q=q->next; } else { q->next = temp->next; } temp = temp->next; } } return p; }
作者: Acode
出处: http://www.cnblogs.com/acode/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出, 原文链接 如有问题, 可留言咨询.