-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
109 lines (91 loc) · 2.62 KB
/
CMakeLists.txt
File metadata and controls
109 lines (91 loc) · 2.62 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
cmake_minimum_required(VERSION 3.28.1)
project(Data-Structures)
set(CMAKE_CXX_STANDARD 26)
add_subdirectory(Hash-Tables)
add_subdirectory(Graphs)
add_subdirectory(Stack)
add_executable(AVL_Tree
"AVL Tree/AVLTree.cpp"
"AVL Tree/Node.h"
"AVL Tree/AVLTree.h"
"AVL Tree/main.cpp"
)
add_executable(B_Tree
"B Tree/main.cpp"
"B Tree/BTree.cpp"
"B Tree/BTree.h"
"B Tree/BTreeNode.cpp"
"B Tree/BTreeNode.h"
)
add_executable(Expression_Tree
"Expression Tree/Abstract.h"
"Expression Tree/TreeNode.h"
"Expression Tree/Stack.h"
"Expression Tree/main.cpp"
)
add_executable(PriorityQueueMaxHeap
"Implementing Priority Queues with Max Heap/abstract.h"
"Implementing Priority Queues with Max Heap/main.cpp"
"Implementing Priority Queues with Max Heap/PriorityQueue.h"
"Implementing Priority Queues with Max Heap/node.h"
)
add_executable(MinHeap
"Min Heap Operations/abstract.h"
"Min Heap Operations/main.cpp"
"Min Heap Operations/MinHeap.h"
)
add_executable(Queue
"Queue/Deque.cpp"
"Queue/queue.cpp"
)
add_executable(Red_Black_Tree
"Red-Black Tree/main.cpp"
"Red-Black Tree/Node.h"
"Red-Black Tree/RedBlackTree.h"
"Red-Black Tree/RedBlackTree.cpp"
)
add_executable(Splay_Tree
"Splay Tree/SplayTree.h"
"Splay Tree/SplayTree.cpp"
"Splay Tree/Node.h"
"Splay Tree/main.cpp"
)
add_executable(Binary_Search_Tree
"Binary Search Tree/main.cpp"
"Binary Search Tree/Node.h"
"Binary Search Tree/BinarySearchTree.cpp"
"Binary Search Tree/BinarySearchTree.h"
)
add_executable(Trie "Trie Tree/Trie.cpp" "Trie Tree/Trie.h"
"Trie Tree/Node.h"
"Trie Tree/main.cpp")
add_executable(Segment_Tree
"Segment Tree/SegmentTree.cpp"
"Segment Tree/SegmentTree.h"
"Segment Tree/Node.h"
)
add_executable(Fenwick_Tree
"Fenwick Tree/FenwickTree.cpp"
"Fenwick Tree/FenwickTree.h"
)
add_executable(Disjoint_Set
"Disjoint Set/DisjointSet.cpp"
"Disjoint Set/DisjointSet.h"
"Disjoint Set/Node.h"
"Disjoint Set/main.cpp"
)
add_executable(Suffix_Tree_and_Arrays
"Suffix Trees and Arrays/main.cpp"
"Suffix Trees and Arrays/Suffix Tree/SuffixTree.cpp"
"Suffix Trees and Arrays/Suffix Tree/SuffixTree.h"
)
add_executable(Skip_List
"Skip List/SkipList.cpp"
"Skip List/SkipList.h"
"Skip List/main.cpp"
)
add_executable(K-d_Tree
"K-d Tree/Kd_Tree.cpp"
"K-d Tree/Kd_Tree.h"
"K-d Tree/main.cpp"
)