diff --git a/src/binary2.c b/src/binary2.c new file mode 100644 index 0000000000000000000000000000000000000000..0a8189a730860c9019fe4f52401b0125c2264156 --- /dev/null +++ b/src/binary2.c @@ -0,0 +1,42 @@ +#include <stdio.h> +#include <stdlib.h> + +#include "utils.h" + +static int list[] = { 8, 11, 17, 22, 29, 38, 51, 58, 65, 67, 74, 81, 87, 90, 96, 97 }; + +#define N_ELEMENTS(arr) (sizeof(arr) / sizeof(arr[0])) + +static int +int_compare (const void *a, const void *b) +{ + static int passes; + + int first = *((int *) a); + int second = *((int *) b); + + passes++; + printf ("\n----------Pass #%d----------\n", passes); + printf ("Comparing %d and %d\n", first, second); + int ret = first - second; + + if (ret < 0) + printf ("%d < %d\n", first, second); + else if (ret > 0) + printf ("%d > %d\n", first, second); + else + printf ("%d == %d\n", first, second); + + return ret; +} + +int +main (int argc, char **argv) +{ + int *vals = get_ints (argc, argv, 1, "What is the number to search for?"); + int key = vals[0]; + + bsearch (&key, list, N_ELEMENTS (list), sizeof (int), int_compare); + + return 0; +} diff --git a/src/meson.build b/src/meson.build index 8d6a5359b7b07f620590769d99eb6f3453d6e74d..46eeab575f94224bb246d54f529fbc7198a11182 100644 --- a/src/meson.build +++ b/src/meson.build @@ -2,6 +2,7 @@ executable('add', 'add.c', dependencies: utils_dep) executable('angle', 'angle.c', dependencies: libm) executable('array-length', 'array-length.c', dependencies: types_dep) executable('binary', 'binary.c') +executable('binary2', 'binary2.c', dependencies: utils_dep) executable('complex', 'complex.c', dependencies: libm) executable('doubles', 'doubles.c') executable('einstein', 'einstein.c')