-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueueULL.c
69 lines (57 loc) · 1.19 KB
/
queueULL.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
//queue using LINKED LIST
#include <stdio.h>
#include <stdlib.h>
struct node *head;
struct node{
int data;
struct node *next;
};
//display the values of queue
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 element in the last position
void push(int val){
struct node *newN, *flag;
flag = head;
newN = malloc(sizeof(struct node));
newN->data = val;
if(head == NULL){
newN->next = NULL;
head = newN;
return;
}
while(flag->next!=NULL){
flag = flag->next;
}
flag->next = newN;
newN->next = NULL;
}
//remove node from the first
void pool(){
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);
pool();
pool();
display(head);
return 0;
}