-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackusinglinkedlist.c
More file actions
104 lines (98 loc) · 1.27 KB
/
Copy pathstackusinglinkedlist.c
File metadata and controls
104 lines (98 loc) · 1.27 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
#include<stdio.h>
#include<stdlib.h>
typedef struct node
{
int data;
struct node *next;
}node;
typedef struct LL
{
node *start;
}LL;
void display(LL *l)
{
node *p;
if(l->start==NULL)
{
printf("\nList is empty...");
}
else
{
p=l->start;
while(p!=NULL)
{
printf("\n%d",p->data);
p=p->next;
}
}
}
void push(LL *l,int x)
{
node *newrec;
newrec=(node *)malloc(sizeof(node));
newrec->data=x;
newrec->next=NULL;
if(l->start==NULL)
{
l->start=newrec;
}
else
{
newrec->next=l->start;
l->start=newrec;
}
}
void pop(LL *l)
{
node *p;
if(l->start==NULL)
{
printf("\nDeletion not possible...");
}
else
{
p=l->start;
l->start=l->start->next;
free(p);
}
}
int main()
{
int ch,x;
LL l;
l.start=NULL;
while(1)
{
printf("\nMenu:\n1-PUSH\n2-POP\n3-DISPLAY\n4-EXIT\nEnter Choice=");
scanf("%d",&ch);
if(ch==4)
break;
switch(ch)
{
case 1:
{
printf("\nEnter element to be inserted=");
scanf("%d",&x);
push(&l,x);
display(&l);
}
break;
case 2:
{
pop(&l);
display(&l);
}
break;
case 3:
{
display(&l);
}
break;
default:
{
printf("\nInvalid Choice...");
}
}
}
return 0;
}