-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.cpp
More file actions
79 lines (70 loc) · 1.52 KB
/
queue.cpp
File metadata and controls
79 lines (70 loc) · 1.52 KB
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
#include <stdio.h>
#include <stdlib.h>
class Node{
public:
friend class Queue;
private:
Node *next;
int data;
};
class Queue{
public:
void output_list(Node *ptr_list);
void pop(Node *list_ptr);
void push(Node *list_ptr, int data);
Queue();
Node *head;
Node *tail;
};
Queue::Queue(){
head = NULL;
tail = NULL;
}
void Queue::output_list(Node *ptr_list){
tail = head;
while(tail->next != NULL) {
printf("%d ", tail->data);
tail = tail->next;
}
printf("%d\n", tail->data);
}
void Queue::pop(Node *list_ptr){
if (head != NULL) {
printf("%d ", head->data);
head = head->next;
}
}
void Queue::push(Node *list_ptr, int data){
if(head == NULL || tail == NULL){
list_ptr = new Node;
list_ptr->data = data;
list_ptr->next = NULL;
tail = head = list_ptr;
}
else{
tail->next = new Node;
tail->next->data = data;
tail->next->next = NULL;
tail = tail->next;
}
}
int main(){
Queue queue;
int data, run = 1;
char commend;
/* when you add a node, you add it at the tail */
while (run) {
scanf("%c", &commend);
if (commend == 'i') {
scanf("%d", &data);
queue.push(queue.head, data);
} else if (commend == 'o') {
queue.pop(queue.head);
} else if (commend == 'l') {
queue.output_list(queue.head);
} else if (commend == 'e') {
run = 0;
}
}
return 0;
}