forked from chynl/jumble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
42 lines (39 loc) · 837 Bytes
/
Copy pathmain.cpp
File metadata and controls
42 lines (39 loc) · 837 Bytes
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
35
36
37
38
39
40
41
42
#include "Base.h"
#include "LinkedList.h"
#include "BinaryHeap.h"
#include "HashTable.h"
#include "AVLTree.h"
#include "DisjointSet.h"
#include "Graph.h"
#include "SortHelper.h"
#include "Random.h"
#include "ArithmeticExpression.h"
#include "MD5.h"
#include "NPuzzle.h"
#include "NQueen.h"
#include "Algorithm.h"
#include "AlgorithmGraph.h"
using namespace sl;
void test() {
//LinkedList<int>::test();
//BinaryHeap<int>::test();
//HashTable<int>::test();
//AVLTree<int>::test();
//DisjointSet::test();
//Graph::test();
//SortHelper<int>::test();
//Random::test();
//ArithmeticExpression::test();
//MD5::test();
//NPuzzle::test();
//NQueen::test();
//Algorithm::test();
//AlgorithmGraph::test();
}
int main() {
{
test();
}
checkMemoryLeaks();
return 0;
}