diff options
author | Alexandre Jesus <adbjesus@gmail.com> | 2016-08-22 16:35:31 +0100 |
---|---|---|
committer | Alexandre Jesus <adbjesus@gmail.com> | 2016-08-22 16:35:31 +0100 |
commit | 3c8f9385498611df123d5f07d0e52035b568d415 (patch) | |
tree | 790528ae70db81429d6cec0fd7892ac130535d7b /include/structs.h | |
parent | 66cfb031dfa81fcb083335a709cb4bd561faccb2 (diff) | |
download | libuknapsack-3c8f9385498611df123d5f07d0e52035b568d415.tar.gz libuknapsack-3c8f9385498611df123d5f07d0e52035b568d415.zip |
Initial code
Diffstat (limited to 'include/structs.h')
-rw-r--r-- | include/structs.h | 20 |
1 files changed, 20 insertions, 0 deletions
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 |