-
Notifications
You must be signed in to change notification settings - Fork 1
/
Stack_SLL
65 lines (63 loc) · 1.17 KB
/
Stack_SLL
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
#include<stdio.h>
#include<conio.h>
struct node
{
int data;
struct node *link;
};
struct head
{
int count;
struct node *link;
};
void insert(struct head *heads)
{
struct node *current=(struct node*)malloc(sizeof(struct node));
printf("Enter the data");
scanf("%d",¤t->data);
current->link=heads->link;
heads->link=current;
heads->count=heads->count+1;
}
int delet(struct head *heads)
{ int val;
struct node *current=(struct node*)malloc(sizeof(struct node));
current=heads->link;
val=current->data;
heads->link=current->link;
heads->count=heads->count-1;
free(current);
return val;
}
int peek(struct head *heads)
{struct node *current=(struct node*)malloc(sizeof(struct node));
current=heads->link;
return current->data;
}
void display(struct head *heads)
{
struct node *current=(struct node*)malloc(sizeof(struct node));
current=heads->link;
while(current!=NULL)
{
printf("%d\t",current->data);
current=current->link;
}
}
void main()
{ int i,x,y;
struct head *heads=(struct head*)malloc(sizeof(struct head));
clrscr();
heads->count=0;
heads->link=NULL;
for(i=0;i<5;i++)
{
insert(heads);
}
for(i=0;i<5;i++)
{
printf("\ndel= %d",delet(heads));
printf("Peek= %d",peek(heads));
}
getch();
}