-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStack-Linked-List.c
91 lines (77 loc) · 1.58 KB
/
Stack-Linked-List.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
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node *next;
};
struct node *top=NULL;
void pop();
void push();
void traversal();
void main(){
int a,b;
while(1){
printf("\n---------------Stack Menu------------\n");
printf("1. Insertion\n 2. Deletion\n 3. Traversal\n 0. exit\n enter the option\n ");
scanf("%d",&b);
switch(b){
case 1: push();
break;
case 2: pop();
break;
case 3: traversal();
break;
case 0: exit(1);
default: printf("invalid option\n");
break;
}
}
}
void push(){
struct node *temp, *newnode;
newnode=(struct node *)malloc(sizeof(struct node));
printf("enter the element\n");
scanf("%d",&newnode->data);
newnode->next=NULL;
if(top==NULL){
top=newnode;
}
else{
newnode->next=top;
top=newnode;
}
temp=top;
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
//deletion at the end
void pop(){
struct node *temp=top;
if(top==NULL){
printf("stack is empty Deletion is not Possible\n");
return 0;
}
else{
top=top->next;
}
temp=top;
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
void traversal(){
struct node *temp;
temp=top;
if(top==NULL){
printf("\nNO Element Found\n");
}
else{
while(temp!=NULL){
printf("%d\t",temp->data);
temp=temp->next;
}
}
}