-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstackULL.c
60 lines (48 loc) · 1 KB
/
stackULL.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
//queue using LINKED LIST
#include <stdio.h>
#include <stdlib.h>
struct node *head;
struct node{
int data;
struct node *next;
};
//display the values of stack
void display(struct node *flag){
// int count = 0;
while(flag->next!=NULL){
printf("%d->", flag->data);
flag = flag->next;
// count++;
}
printf("%d\n", flag->data);
// printf("Total node is : %d.\n", count+1);
}
//adding elements in the first position.
void push(int val){
struct node *newN;
newN = malloc(sizeof(struct node));
newN->data = val;
newN->next = head;
head = newN;
}
//remove node from the first
void pop(){
struct node *flag;
flag = head;
head = head->next;
printf("%d has been removed.\n", flag->data);
free(flag);
}
int main(void){
head = NULL;
push(5);
push(4);
push(3);
push(2);
push(1);
display(head);
pop();
pop();
display(head);
return 0;
}