-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinked_list_del.cpp
More file actions
84 lines (67 loc) · 1.08 KB
/
linked_list_del.cpp
File metadata and controls
84 lines (67 loc) · 1.08 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
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int data;
Node* next;
};
Node* head;
void Insert(int data, int n){
Node* temp1 = new Node();
temp1 -> data = data;
temp1 -> next = NULL;
if (n==1)
{
temp1 -> next = head;
head =temp1;
return;
}
Node* temp2 = head;
for (int i = 0; i < n-2; i++)
{
temp2 = temp2 -> next;
}
temp1 -> next = temp2 -> next;
temp2 -> next = temp1;
}
void Print() {
cout << "List is : ";
Node* temp = head ;
while(temp != NULL){
cout << temp -> data << " ";
temp = temp -> next;
}
cout << endl;
}
void Delete(int n){
Node* temp1 =head;
if (n==1)
{
head = temp1 -> next;
delete temp1;
return;
}
int i;
for (int i = 0; i < n-2; ++i)
{
temp1=temp1 -> next ; //temp1 points to n-1 th Node
}
Node* temp2 =temp1 -> next; //nth node
temp1 -> next = temp2 -> next; // n+1 th node
delete (temp2);
}
int main(int argc, char const *argv[])
{
head = NULL;
Insert(1,1);
Insert(2,2);
Insert(3,1);
Insert(4,2);
Insert(7,4);
Insert(8,3);
Insert(4,5);
Print();
Delete(4);
Print();
return 0;
}