Global Head

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef ALGORITHM_GLOBAL_H
#define ALGORITHM_GLOBAL_H
#include<stdio.h>
#include"function.h"
#include"selection_sort.h"
#include"bubble_sort.h"
#include"merge_sort.h"
#include"insertion_sort.h"
#include"shell_sort.h"
#include"quick_sort.h"
#include"heap_sort.h"
#include"linear_search_method.h"
#include"binary_search_method.h"
#include"hash_table_search_method.h"
#endif //ALGORITHM_GLOBAL_H