-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackUsingLinkedList.c
More file actions
84 lines (84 loc) · 1.53 KB
/
Copy pathStackUsingLinkedList.c
File metadata and controls
84 lines (84 loc) · 1.53 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<stdio.h>
#include<stdlib.h>
typedef struct node
{
int info;
struct node *link;
}Node;
Node*top=NULL;
void push (int elem)
{
Node*p;
p=(Node*)malloc(sizeof(Node));
p->info=elem;
p->link=top;
top=p;
}
void peek()
{
if(top==NULL)
{
printf("THE STACK IS EMPTY");
}
else
printf("THE TOP ELEMENT IS %d",top->info);
}
void pop()
{
struct node*temp;
temp=top;
if(top==NULL)
{
printf("THE STACK IS EMPTY");
}
else
{
printf("THE POPPED ELEMENT IS %d",top->info);
top=top->link;
free(temp);
}
}
void display()
{
struct node*temp;
temp=top;
if(top==NULL)
{
printf("THE STACK IS EMPTY");
}
else
{
while(temp!=NULL)
{
printf("%d\n",temp->info);
temp=temp->link;
}
}
}
void main()
{
int elem,ch;
printf ("\nSTACK USING LINKED LIST");
do
{
printf("\n\n1.PUSH\n2.POP\n3.PEEK\n4.DISPLAY\n5.EXIT\n");
printf("\nEnter your choice: ");
scanf("%d",&ch);
switch(ch)
{
case 1: printf("\nEnter the element to be pushed: ");
scanf("%d",&elem);
push(elem);
break;
case 2: pop();
break;
case 3: peek();
break;
case 4: display();
break;
case 5: break;
default: printf("INVALID CHOICE");
}
}
while(ch!=5);
}