-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
34 lines (30 loc) · 841 Bytes
/
main.cpp
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
32
33
34
#include "anagram.cpp"
#include "vector_tests.cpp"
#include "hash_tests.cpp"
#include "experiments.cpp"
#include "stack.cpp"
#include "binary_conversions.cpp"
//#include "infix_prefix_postfix.cpp"
#include "queue_tests.cpp"
#include "palindrome.cpp"
#include "linked_lists.cpp"
#include "recursion_tests.cpp"
#include "search_hash.cpp"
#include "sorting_algorithms.cpp"
using namespace std;
int main()
{
// test_anagram(); //anagram.cpp
// test_time(); //vector_tests.cpp
// test_hash(); //hash_tests.cpp
// run_experiments(); //experiments.cpp
// test_stack(); // stack.cpp
// test_binary(); //binary_conversion.cpp
// test_in_pre_post_fix(); //infix_prefix_postfix.cpp
// run_queue_tests();
// TestPalindromes();
// ConstructList();
// TestRecursion();
// SearchAndHashing();
SortFunctions();
}