From 3c8f9385498611df123d5f07d0e52035b568d415 Mon Sep 17 00:00:00 2001 From: Alexandre Jesus Date: Mon, 22 Aug 2016 16:35:31 +0100 Subject: Initial code --- include/structs.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/structs.h (limited to 'include/structs.h') diff --git a/include/structs.h b/include/structs.h new file mode 100644 index 0000000..cb1bca9 --- /dev/null +++ b/include/structs.h @@ -0,0 +1,20 @@ +#ifndef _STRUCTS_H +#define _STRUCTS_H +struct item { + double p; + double w; +}; + +struct data { + long int N; + struct item * items; + double allp; + double allw; +}; + +struct front_item { + struct item i; + struct front_item * next; + struct front_item * prev; +}; +#endif -- cgit v1.2.3