LeetCode 203. 移除链表元素
Posted Blocking The Sky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 203. 移除链表元素相关的知识,希望对你有一定的参考价值。
题目描述
给你一个链表的头节点 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 *p =new ListNode(0,NULL);
ListNode *q =new ListNode(0);
q=p;
while(head){
if(head->val!=val){
q->next=head;
q=head;
}
head=head->next;
}
q->next=NULL;
return p->next;
}
};
以上是关于LeetCode 203. 移除链表元素的主要内容,如果未能解决你的问题,请参考以下文章