-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdequeIR.c
82 lines (68 loc) · 1.66 KB
/
dequeIR.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
//Deque is a type of queue which puts input and takes output from both side [front & rear]
//this is the code of Input Restricted Deque which gives permission to put input in just one side. In this code we take the BACK SIDE for input.
#include <stdio.h>
#include <stdlib.h>
struct node *head;
struct node{
int data;
struct node *next;
};
//display the values of linked-List
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 poolF(){
struct node *flag;
flag = head;
head = head->next;
printf("%d has been removed.\n", flag->data);
free(flag);
}
//remove node from the last
void poolB(){
struct node *flag = head;
while(flag->next->next!=NULL){
flag = flag->next;
}
printf("%d has been removed.\n", flag->next->data);
free(flag->next);
flag->next = NULL;
}
int main(void){
head = NULL;
push(5);
push(4);
push(3);
push(2);
push(1);
display(head);
poolF();
display(head);
poolB();
display(head);
}