summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/queue.c')
-rw-r--r--misc/examples/queue.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/misc/examples/queue.c b/misc/examples/queue.c
deleted file mode 100644
index 83c18d09..00000000
--- a/misc/examples/queue.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <stc/crand.h>
-#include <stdio.h>
-
-#define i_val int
-#define i_tag i
-#include <stc/cqueue.h>
-
-int main() {
- int n = 100000000;
- crand_unif_t dist;
- crand_t rng = crand_init(1234);
- dist = crand_unif_init(0, n);
-
- cqueue_i queue = {0};
-
- // Push ten million random numbers onto the queue.
- c_forrange (n)
- cqueue_i_push(&queue, (int)crand_unif(&rng, &dist));
-
- // Push or pop on the queue ten million times
- printf("%d\n", n);
- c_forrange (n) { // forrange uses initial n only.
- int r = (int)crand_unif(&rng, &dist);
- if (r & 1)
- ++n, cqueue_i_push(&queue, r);
- else
- --n, cqueue_i_pop(&queue);
- }
- printf("%d, %" c_ZI "\n", n, cqueue_i_size(&queue));
-
- cqueue_i_drop(&queue);
-}