-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path203RemoveLinkedListElement.cpp
39 lines (39 loc) · 1.05 KB
/
203RemoveLinkedListElement.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* 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) {
if(head==NULL||head->next==NULL&&head->val==val) return NULL;
if(head->next==NULL&&head->val!=val) return head;
bool first=false;
ListNode* newhead=head;
ListNode* prev=head;
while(head!=NULL){
if(first==false&&head->val==val){
head=head->next;
prev->next=NULL;
prev=head;
newhead=head;
}
else if(head->next!=NULL&&head->next->val==val){
first=true;
prev=head->next;
head->next=head->next->next;
prev->next=NULL;
}
else{
first=true;
head=head->next;
}
}
return newhead;
}
};