forked from anmol098/algorithms_and_data_structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-1-remove-dups.cpp
134 lines (120 loc) · 2.93 KB
/
2-1-remove-dups.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Cracking the coding interview edition 6
* Problem 2-1 : Remove duplicates from an unsorted linked list.
* Approach 1 : Naive approach of iterating and remove all further duplicates of current node.
* Space complexity O(1) & time complexity O(n^2)
* Approach 2: Use a hash table, space complexity O(n), time complexity O(n)
*/
#include <iostream>
#include <unordered_map>
#include <random>
struct Node {
int data = 0;
Node * next = nullptr;
};
/**
* [insert - insert a node at the head of list]
* @param head [head of the list]
* @param data [new node's data]
*/
void insert( Node * & head, int data )
{
Node * newNode = new Node;
newNode->data = data;
newNode->next = head;
head = newNode;
}
/**
* [printList Helper routine to print list]
* @param head [head of the list]
*/
void printList( Node * head ) {
while( head ) {
std::cout << head->data << "-->";
head = head->next;
}
std::cout << "nullptr" << std::endl;
}
//generate a random int between min and max
/**
* [random_range helper routine to generate a random number between min and max (including)]
* @param min [min of range]
* @param max [max of range]
* @return [A random number between min and max]
*/
static inline int random_range(const int min, const int max) {
std::random_device rd;
std::mt19937 mt(rd());
std::uniform_int_distribution<int> distribution(min, max);
return distribution(mt);
}
// Method 1
//space complexity O(1)
// time complexity O(n^2)
/**
* [removeDuplicates Remove duplicates without using extra space]
* @param head [head of list]
*/
void removeDuplicates( Node * head ) {
if ( head == nullptr || ( head && (head->next == nullptr))) {
return;
}
Node * curr = head;
while(curr) {
Node * runner = curr;
while (runner->next != nullptr) {
if (runner->next->data == curr->data) {
runner->next = runner->next->next;
} else {
runner = runner->next;
}
}
curr = curr->next;
}
}
// Method 2
// space complexity - O(n)
// time complexity - O(n)
/**
* [removeDuplicates1 - Remove duplicates from the list using hash table]
* @param head [head of list]
*/
void removeDuplicates1( Node * head ) {
if ( head == nullptr || ( head && (head->next == nullptr) )) {
return ;
}
std::unordered_map<int, int> node_map;
Node * prev = head;
Node * curr = head->next;
node_map[head->data] = 1;
while( curr != nullptr ) {
while (curr && node_map.find(curr->data) != node_map.end()) {
curr = curr->next;
}
prev->next = curr;
prev = curr;
if (curr) {
node_map[curr->data] = 1;
curr = curr->next;
}
}
}
int main() {
std::cout << "Method 1 : \n";
Node * head = nullptr;
for ( int i = 0; i < 10; ++i ) {
insert(head, random_range(1,7));
}
printList(head);
removeDuplicates(head);
printList(head);
std::cout << "Method 2 : \n";
Node * head1 = nullptr;
for ( int i = 0; i < 10; ++i ) {
insert(head1, random_range(1,7));
}
printList(head1);
removeDuplicates1(head1);
printList(head1);
return 0;
}