-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremove_duplicates_from_sll.cpp
58 lines (49 loc) · 1.16 KB
/
remove_duplicates_from_sll.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//Remove kth last node from LinkedList
//https://ide.geeksforgeeks.org/lrTyFZDqxi
#include<bits/stdc++.h>
using namespace std;
struct Node{
int data;
struct Node* next;
};
void printLL(struct Node* head){
if(head == NULL) return;
while(head!=NULL){
cout<<head->data<<" ";
head = head->next;
}
cout<<"\n";
}
Node* newNode(int key)
{
Node* temp = new Node;
temp->data = key;
temp->next = NULL;
return temp;
}
void removeDuplicateNodes(Node *head){
Node *first = head; Node *second = head;
while(first){
second = first->next;
while(second && second->data == first->data){
second = second->next;
}
first->next = second;
first = second;
}
printLL(head);
}
int main()
{
Node* head1 = newNode(1);
head1->next = newNode(2);
head1->next->next = newNode(3);
head1->next->next->next = newNode(4);
head1->next->next->next->next = newNode(4);
head1->next->next->next->next->next = newNode(4);
head1->next->next->next->next->next->next = newNode(5);
printLL(head1);
cout<<"\n\n";
removeDuplicateNodes(head1);
return 0;
}