-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path11 project sll .cpp
303 lines (275 loc) · 6.2 KB
/
11 project 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/* Code written
@author Shivendra k jha
some singly linkedlist code like create , display , max , sum , count, searching, insertion using normal method and using recursion
*/
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
struct Node* next;
}*first=NULL;
void Create(int A[], int n)
{
int i;
struct Node* last, * t;
first = (struct Node*)malloc(sizeof(struct Node));
first->data = A[0];
first->next = NULL;
last = first;
for (i = 1; i < n; i++)
{
t = (struct Node*)malloc(sizeof(struct Node));
t->data = A[i];
t->next = NULL;
last->next = t;
last = t;
}
}
void Display(struct Node* p)
{
while (p != NULL)
{
printf("->%d", p->data);
p = p->next;
}
}
void RDisplay(struct Node* p)
{
if (p!=NULL)
{
printf("->%d", p->data);
RDisplay(p->next);
}
}
int count(struct Node* p)
{
int c = 0;
while (p != NULL)
{
c++;
p = p->next;
}
return c;
}
int Rcount(struct Node* p)
{
if (p == 0) return 0;
else
return Rcount(p->next) + 1;
}
int sum(struct Node* p)
{
int sum = 0;
while (p != NULL)
{
sum += p->data;
p = p->next;
}
return sum;
}
int Rsum(struct Node* p)
{
if (p == 0)
return 0;
else
return Rsum(p->next) + p->data;
}
int max(struct Node* p)
{
int m = -3276;
while (p != NULL)
{
if (m < p->data)
m = p->data;
p = p->next;
}
return m;
}
int max1(struct Node* p)
{
int x = 0;
if (p == 0)
return INT_MIN;
else {
x = max1(p->next);
if (x > p->data)
return x;
else return p->data;
}
}
int Rmax(struct Node* p)
{
int x = 0;
if (p == 0)
{
return INT_MIN;
}
else
x=Rmax(p->next);
return x > p->data ? x : p->data; // using ternary operator
}
// Binary search is not possible in linkedlist // Binery search is only for sorted array
struct Node* LSearch(struct Node* p, int key)
{
struct Node* q=NULL;
while (p != NULL)
{
if (key == p->data)
{
return p;
p = p->next;
}
p = p->next;
}
return NULL;
}
struct Node* RSearch(struct Node* p, int key) // using recursion searching the elements in linkes list
{
if (p == NULL)
return NULL;
if (key == p->data)
return p;
return RSearch(p->next, key);
}
//move to top approch
struct Node* Movetotop(struct Node* p, int key)
{
// for sending key element to top we need one extrea pointer i.e q
struct Node* q=NULL;
while (p != NULL)
{
if (p->data == key)
{
q->next = p->next;
p->next = first;
first = p;
return p;
}
q = p;
p = p->next;
}
return NULL;
}
// Inserting in linkedlist // in array we start index from 0 ll is independent of that
// we can insert by two pos
// Insert before first & insert after given position
void Insert(int pos, int x) // position at which element will be inserted and data (x) to be inserted
{
struct Node* t, * p; // creating node
if (pos == 0) // before 1st node
{
t = (struct Node*)malloc(sizeof(struct Node)); // creating node memory in heap
t->data = x; // data insertion on newly created node
t->next = first; // newly created first next (pointer) points to the old first (for linking purpose)
first = t; // Bring 1st on new node
}
else if (pos > 0)
{
p = first;
for (int i = 0; i < pos - 1 && p; i++)
p = p->next;
if (p)
{
t = (struct Node*)malloc(sizeof(struct Node));
t->data = x;
t->next = p->next;
p->next = t;
}
}
}
// Insert at last
void Insertlast(int y)
{
struct Node* tt;
struct Node* last;
tt = (struct Node* )malloc (sizeof(struct Node));
last= (struct Node*)malloc(sizeof(struct Node));
tt->data = y; // assigning data to node
tt->next = NULL; // assigning node next with NUll
if (first == NULL) // if the ll is alredy empty
{
first = last = tt;
}
else
{
last->next = tt;
last = tt;
}
}
void Sortedinsert(struct Node* p, int x)
{
struct Node* t, * q = NULL;
t = (struct Node*)malloc(sizeof(struct Node));
t->data = x;/* first node is ready*/
t->next = NULL;
if (first == NULL)
{
first = t;
}
else
{
while (p && p->data < x)
{
q = p;
p = p->next;
}
if (p == first)
{
t->next = first;
first = t;
}
else {
t->next = q->next;
q->next = t;
}
}
}
int main()
{
int a[] = { 2,3,4,5,6,7,8,9,11,22,33,44,55,66,77,2,55,999 };
int b[] = { 10,20,30,40,50 };
Create(b, sizeof(b) / sizeof(int));
Create(a, sizeof(a) / sizeof(int));
struct Node* temp;
Display(first);
printf("\n Display using Recursion\n");
RDisplay(first);
printf("\nThe nodes in linkedlist is %d",count(first));
printf("\nThe nodes in linkedlist using Recursion is %d", Rcount(first)); // size and space is o(n)
printf("\nSum of the linkedlist is = %d", sum(first));
printf("\nSum of LL using Recursion is = %d", Rsum(first));
printf("\nMax in the linked list is %d", max(first));
printf("\nmax in ll using another method %d", max1(first));
printf("\nmax using recursion %d", Rmax(first));
temp = LSearch(first, 888);
if (temp)
printf("\nData is found in ll using Linear search i.e : %d", temp->data);
else
printf("\nData is not Found ");
temp = RSearch(first, 5);
if (temp)
printf("\nData is found in ll using Recursive method i.e : %d", temp->data);
else
printf("\nData is not Found");
temp = Movetotop(first, 8); // this is for checking either that element is presnt or not
if (temp)
printf("\ndata is found in ll i.e % d and key element is moved to first position\n", temp->data);
else
printf("Element is not present\n");
Display(first); // it will display after shifting to 1st position
printf("\n");
Insert(0, 666);// this is for inserting element in the ll( pos , data ) // o(n)
Insert(1, 3);
Insert(2, 4);
Insert(3, 4);
Display(first); // Displaying after insertion
//imp //Display(first); // We can Create a new linked list with insertion method after removing array and create line in main code
printf("\n");
Insertlast(28); // inserting at last
Display(first);
printf("\n");
Sortedinsert(first, 35); // this is for inserting in a sorted linked list i.e in create array b [] in main
Display(first);
return 0;
}