-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqueue.c
64 lines (54 loc) · 1.06 KB
/
queue.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
// queue.c
#include <stdlib.h>
#include "queue.h"
struct queue {
int head, tail, qty;
struct person data[MAX];
};
Queue* create_queue() {
Queue *q = (Queue*) malloc(sizeof(struct queue));
if (q != NULL) {
q->head = 0;
q->tail = 0;
q->qty = 0;
}
return q;
}
void destroy(Queue *q) {
free(q);
}
int length(Queue *q) {
if (q == NULL)
return -1;
return q->qty;
}
int is_full(Queue *q) {
if (q == NULL) return -1;
if (q->qty == MAX)
return 1;
return 0;
}
int is_empty(Queue *q) {
if (q == NULL) return -1;
if (q->qty == 0)
return 1;
return 0;
}
int qput(Queue *q, struct person p) {
if (q == NULL || is_full(q)) return 0;
q->data[q->tail] = p;
q->tail = (q->tail + 1) % MAX;
q->qty++;
return 1;
}
int qremove(Queue *q) {
if (q == NULL || is_empty(q)) return 0;
q->head = (q->head + 1) % MAX;
q->qty--;
return 1;
}
int get(Queue *q, struct person *p) {
if (q == NULL || is_empty(q)) return 0;
*p = q->data[q->head];
return 1;
}