LeetCode Algorithm 203. 移除链表元素
Posted _Alex_007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 203. 移除链表元素相关的知识,希望对你有一定的参考价值。
Ideas
这题其实很简单,从头开始遍历,只要遇到node->val==val的通通删除就OK了。
Code
C++
class Solution
public:
ListNode* removeElements(ListNode* head, int val)
ListNode* pre = new ListNode(0, head);
ListNode* item = pre;
while (item->next != NULL)
if (item->next->val == val)
item->next = item->next->next;
else
item = item->next;
return pre->next;
;
以上是关于LeetCode Algorithm 203. 移除链表元素的主要内容,如果未能解决你的问题,请参考以下文章
[JavaScript 刷题] 链表 - 移除链表元素, leetcode 203