给你一个链表的头节点 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 *cur = dummy;
while (cur->next != NULL) {
if (cur->next->val == val) {
ListNode *temp = cur->next;
cur->next = temp->next;
delete temp;
} else {
cur = cur->next;
}
}
return dummy->next;
}
};
总结
- 使用了虚拟头结点
- 复习了构造函数和析构函数,以及野指针