给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* removeElements(ListNode* head, int val) {
ListNode* dummy = new ListNode();
dummy ->next = head;
ListNode* pre = dummy;
while(head){
//如果当前指向的值需要删掉
if(head->val == val){
pre->next = head->next;
head = head->next;
}else{
pre = head;
head = head->next;
}
}
return dummy->next;
}
};