-
Notifications
You must be signed in to change notification settings - Fork 0
/
6. Dynamic Implementation of Stack.c
201 lines (154 loc) · 4.09 KB
/
6. Dynamic Implementation of Stack.c
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
/**********************************************************************************************************
TITLE: Dynamic Implementation of Stack.
**********************************************************************************************************/
#include<stdio.h>
#include<stdlib.h>
//#define NULL
typedef struct node
{
int info;
struct node *next;
}Node;
typedef struct
{
Node *tos;
}StackLL;
void push(StackLL *ptr, int x)
{
Node *p;
p=(Node *)malloc(sizeof(Node));
p->info=x;
if(ptr->tos == NULL )
{
ptr->tos=p; //tos = p
p->next = NULL;
}
else
{
p->next=ptr->tos; //p->next = tos
ptr->tos=p; //tos = p, newly created node becomes top of the stack
}
}
int pop(StackLL *ptr)
{
Node *p;
int x;
if(ptr->tos== NULL )
{
printf("Stack underflow\n");
return;
}
else
{
p=ptr->tos; //p is pointer pointing to top of the stack
x=p->info; //store its data to
ptr->tos=p->next; //tos = tos->next
free(p); //release the memory pointed by p
return x;
}
}
int peek(StackLL *ptr)
{
if( ptr->tos== NULL)
{
printf("Stack underflow\n");
exit(-1);
}
else
return ptr->tos->info;
}
int size(StackLL *ptr)
{
Node *p=ptr->tos;
int i=0;
if(p == NULL)
{
return i;
}
else
{
while(p!=NULL)
{
i++;
p=p->next;
}
return i;
}
}
void display(StackLL s)
{
Node *p;
p=s.tos;
printf("The Stack is :\n");
while(p!=NULL)
{
printf("%d\n",p->info);
p=p->next;
}
}
int main()
{
int choice,ele;
StackLL s1; //stack s1 created using LL
s1.tos= NULL ; //Initially no node
do
{
printf("\nEnter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit\n");
scanf("%d",&choice);
switch(choice)
{
case 1 :
printf("Enter the element to be added to the stack using Linked List :\n");
scanf("%d",&ele);
push(&s1,ele);
break;
case 2 :
printf("The Popped element is :\n%d",pop(&s1));
break;
case 3:
printf("The element at the top of the stack is :\n%d",peek(&s1));
break;
case 4 :
display(s1);
printf("\nSize of the stack is : %d",size(&s1));
break;
}
}while (choice!=5);
return 0;
}
/**********************************************************************************************************
OUTPUT:
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
1
Enter the element to be added to the stack using Linked List :
38
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
1
Enter the element to be added to the stack using Linked List :
44
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
1
Enter the element to be added to the stack using Linked List :
54
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
1
Enter the element to be added to the stack using Linked List :
60
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
2
The Popped element is :
60
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
3
The element at the top of the stack is :
54
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
4
The Stack is :
54
44
38
Enter your choice : 1.Insert Data 2.Delete Data 3.Data at the top of the stack 4.Display 5.Exit
5
Process returned 0
**********************************************************************************************************/