-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsplitCircularLL.cpp
More file actions
139 lines (107 loc) · 2.15 KB
/
splitCircularLL.cpp
File metadata and controls
139 lines (107 loc) · 2.15 KB
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
135
136
137
138
139
/*
Program : Split Circular LL into two circular LLs. (Q3 : Assignment 1)
Author : © Vipin Kumar
Created on : March 25, 2018 13:17 IST
*/
#include <iostream>
#include <conio.h>
#include <cstdlib>
using namespace std;
struct node {
/*
Node struct definition
This structure defines the structure of node of the linked list.
The node structure of a singly linked list has two elements
namely data (dtype - int) and next (dtype node pointer). This
will helps to create an entity of a linked list i.e, a node.
Parameters
----------
None
Returns
-------
None
Description
-----------
Struct definition
Struct Variables
----------------
data : dtype int - data element of the node.
next : dtype node pointer - pointer to the next node.
Approach
--------
Struct definition provides variables for the the structure.
*/
int data;
node* next;
};
class SplitCircularLL {
public:
node* head;
node* tail;
int data;
SplitCircularLL ();
~SplitCircularLL ();
void insertionToEmpty (int);
void insertionEnd (int);
void display ();
void splitList (node*);
};
SplitCircularLL::SplitCircularLL () {
head = NULL;
tail = NULL;
}
SplitCircularLL::~SplitCircularLL () {
head = NULL;
tail = NULL;
}
void SplitCircularLL::insertionToEmpty (int value) {
if (tail != NULL) {
return;
}
node* newNode = new node;
newNode->data = value;
newNode->next = NULL;
tail = newNode;
head = newNode;
tail->next = tail;
return;
}
void SplitCircularLL::insertionEnd (int value) {
if (tail == NULL) {
insertionToEmpty (value);
}
else {
node* newNode = new node;
newNode->data = value;
tail->next = newNode;
tail = newNode;
tail->next = head;
}
}
void SplitCircularLL::splitList (node* head) {
node* slow;
node* fast;
}
void SplitCircularLL::display () {
node* temp;
if (tail == NULL) {
cout << "Linked List is EMPTY!";
return;
}
temp = tail->next;
do {
cout << temp->data << " ";
temp = temp->next;
} while (temp != tail->next);
}
int main () {
system ("cls");
SplitCircularLL scll;
scll.insertionEnd (2);
scll.insertionEnd (3);
scll.insertionEnd (4);
scll.insertionEnd (5);
scll.display ();
getch ();
return 0;
}