-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircularLL.cpp
114 lines (92 loc) · 1.76 KB
/
circularLL.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
#include <bits/stdc++.h>
using namespace std;
class Node{
public:
int data;
Node* next;
Node(int d) {
this -> data = d;
this -> next = NULL;
}
~Node(){
if(this-> next != NULL){
this -> next = NULL;
delete next;
}
}
};
void insertNode(Node* &tail, int element, int d) {
//assuming element is in the list
//list is empty
if(tail == NULL){
Node* newNode = new Node(d);
tail = newNode;
newNode -> next = newNode;
}
else {
//non - empty list
Node* curr = tail;
while(curr -> data != element) {
curr = curr -> next;
}
//elemet is found and cuurent is on the element
Node* temp = new Node(d);
temp -> next = curr -> next;
curr -> next = temp;
}
}
void deleteNode(Node* &tail, int val) {
//if List is Empty - 0 Node
if(tail == NULL) {
return;
}
else {
Node* prev = tail;
Node* curr = prev -> next;
while(curr -> data != val) {
prev = curr;
curr = curr -> next;
}
prev -> next = curr -> next;
//1 Node is present
if(curr == prev) {
tail = NULL;
}
else if (curr == tail) {
tail = prev;
}
curr -> next = NULL;
delete curr;
}
}
void print(Node* tail) {
Node* temp = tail;
if(tail == NULL) {
cout <<"List is empty";
return;
}
do{
cout << tail -> data << " ";
tail = tail -> next;
}
while(tail != temp);
cout<<endl;
}
int main(){
Node* tail = NULL;
//insert in empty list
insertNode(tail, 5, 3);
print(tail);
insertNode(tail, 3, 5);
print(tail);
insertNode(tail, 5, 7);
print(tail);
insertNode(tail, 3, 4);
print(tail);
insertNode(tail, 5, 6);
print(tail);
insertNode(tail, 7, 9);
print(tail);
deleteNode(tail, 3);
print(tail);
}