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