forked from SkienaBooks/Algorithm-Design-Manual-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.c
87 lines (63 loc) · 1.7 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* queue.c
Implementation of a FIFO queue abstract data type.
by: Steven Skiena
begun: March 27, 2002
*/
/*
Copyright 2003 by Steven S. Skiena; all rights reserved.
Permission is granted for use in non-commerical applications
provided this copyright notice remains intact and unchanged.
This program appears in my book:
"Programming Challenges: The Programming Contest Training Manual"
by Steven Skiena and Miguel Revilla, Springer-Verlag, New York 2003.
See our website www.programming-challenges.com for additional information.
This book can be ordered from Amazon.com at
http://www.amazon.com/exec/obidos/ASIN/0387001638/thealgorithmrepo/
*/
#include <stdio.h>
#include "bool.h"
#include "queue.h"
void init_queue(queue *q) {
q->first = 0;
q->last = QUEUESIZE - 1;
q->count = 0;
}
void enqueue(queue *q, item_type x) {
if (q->count >= QUEUESIZE) {
printf("Warning: queue overflow enqueue x=%d\n", x);
} else {
q->last = (q->last + 1) % QUEUESIZE;
q->q[q->last] = x;
q->count = q->count + 1;
}
}
item_type dequeue(queue *q) {
item_type x;
if (q->count <= 0) {
printf("Warning: empty queue dequeue.\n");
} else {
x = q->q[q->first];
q->first = (q->first + 1) % QUEUESIZE;
q->count = q->count - 1;
}
return(x);
}
item_type headq(queue *q) {
return(q->q[q->first]);
}
int empty_queue(queue *q) {
if (q->count <= 0) {
return (TRUE);
}
return (FALSE);
}
void print_queue(queue *q) {
int i, j;
i = q->first;
while (i != q->last) {
printf("%d ", q->q[i]);
i = (i + 1) % QUEUESIZE;
}
printf("%2d ", q->q[i]);
printf("\n");
}