aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/dfs.c
blob: ca796c52eb478d86013bb2ee6aa54b560a933005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdio.h>
#include <time.h>
#include "common.h"
#include "structs.h"
#include "dfs.h"

int main(int argc, char * argv[]){
  struct data * d;
  struct front_item * b;

  if(argc!=2){
    printf("Wrong number of arguments!\n");
    printf("Example usage: %s data_file\n",argv[0]);
    return 0;
  }

  d = input(argv[1]);

  clock_t t = clock();
  b = dfs(d);

  t = clock() - t;
  printf("%f,%d\n",((float)t)/CLOCKS_PER_SEC,len_front(b));
  
  print_front(b);

  free_front(b);
  free_data(d);

  return 0;
}