From 5deedbbbf98e317ef3258ae637097a42ad7e9fd3 Mon Sep 17 00:00:00 2001 From: Alexandre Jesus Date: Sun, 25 Sep 2016 15:24:57 +0100 Subject: Online method --- src/main/online.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/main/online.c (limited to 'src/main') diff --git a/src/main/online.c b/src/main/online.c new file mode 100644 index 0000000..ba8a94c --- /dev/null +++ b/src/main/online.c @@ -0,0 +1,64 @@ +#include +#include +#include +#include +#include "common.h" +#include "structs.h" +#include "dfs.h" +#include "random_heuristic.h" +#include "nem_ull.h" + +int main(int argc, char * argv[]){ + struct data * data; + struct front_item * front = NULL; + struct online_return ret; + + if(argc!=5){ + printf("Wrong number of arguments!\n"); + printf("Example usage: %s algorithm1 algorithm2 sort_method data_file\n",argv[0]); + return 0; + } + + data = input(argv[4]); + + /* Sort data */ + srand(time(NULL)); + if(strcmp(argv[3], "random") == 0) { + qsort(data->items, data->N, sizeof(struct item), cmp_items_random); + } else if(strcmp(argv[3], "ratio") == 0) { + qsort(data->items, data->N, sizeof(struct item), cmp_items_ratio); + } + + clock_t t = clock(); + /* Choose algorithm1 */ + if(strcmp(argv[1], "dfs") == 0) { + ret = dfs_online(data, NULL, NULL, 20); + } else if(strcmp(argv[1], "random_heuristic") == 0) { + ret = random_heuristic_online(data, NULL, NULL); + } + + /* Run algorithm2, if it hasn't finished yet*/ + if(ret.tree!=NULL){ + if(strcmp(argv[2], "dfs") == 0) { + ret = dfs_online(data, ret.front, ret.tree, 100); + } else if(strcmp(argv[2], "random_heuristic") == 0) { + ret = random_heuristic_online(data, ret.front, ret.tree); + } + } + front = ret.front; + + /* Remove first item from front (only a placeholder) */ + front=front->next; + free(front->prev); + front->prev = NULL; + + t = clock() - t; + printf("%f,%d\n",((float)t)/CLOCKS_PER_SEC,len_front(front)); + + print_front(front); + + free_front(front); + free_data(data); + + return 0; +} -- cgit v1.2.3