-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithmInC.cbp
More file actions
114 lines (114 loc) · 4.16 KB
/
AlgorithmInC.cbp
File metadata and controls
114 lines (114 loc) · 4.16 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
110
111
112
113
114
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_project_file>
<FileVersion major="1" minor="6" />
<Project>
<Option title="AlgorithmInC" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<Build>
<Target title="Debug">
<Option output="bin/Debug/AlgorithmInC" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Debug/" />
<Option type="1" />
<Option compiler="gcc" />
<Option projectCompilerOptionsRelation="1" />
<Compiler>
<Add option="-g" />
<Add option="-msse4.2" />
</Compiler>
</Target>
<Target title="Release">
<Option output="bin/Release/AlgorithmInC" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Release/" />
<Option type="1" />
<Option compiler="gcc" />
<Compiler>
<Add option="-O2" />
</Compiler>
<Linker>
<Add option="-s" />
</Linker>
</Target>
</Build>
<Compiler>
<Add option="-Wall" />
<Add option="-fexceptions" />
</Compiler>
<Unit filename="bitree/bitree.cpp">
<Option compilerVar="CC" />
</Unit>
<Unit filename="bitree/bitree.h" />
<Unit filename="bitree/bitree_test.cpp">
<Option compilerVar="CC" />
</Unit>
<Unit filename="common.cpp" />
<Unit filename="common.h" />
<Unit filename="dp/dp.cpp" />
<Unit filename="dp/dp.h" />
<Unit filename="dp/dp_test.cpp" />
<Unit filename="graph/graph.cpp" />
<Unit filename="graph/graph.h" />
<Unit filename="graph/shortestpath.cpp" />
<Unit filename="linear_list/Josephus.cpp" />
<Unit filename="linear_list/LinearList.cpp" />
<Unit filename="linear_list/LinearList.h" />
<Unit filename="linked_list/DoubleLoop/TLNode.h" />
<Unit filename="linked_list/DoubleLoop/TRLink.cpp" />
<Unit filename="linked_list/DoubleLoop/TRLink.h" />
<Unit filename="linked_list/Double/TLNode.h" />
<Unit filename="linked_list/Double/TLink.cpp" />
<Unit filename="linked_list/Double/TLink.h" />
<Unit filename="linked_list/SinglyLoop/SLNode.h" />
<Unit filename="linked_list/SinglyLoop/SLink.cpp" />
<Unit filename="linked_list/SinglyLoop/SLink.h" />
<Unit filename="linked_list/SinglyLoop/SRLNode.h" />
<Unit filename="linked_list/SinglyLoop/SRLink.cpp" />
<Unit filename="linked_list/SinglyLoop/SRLink.h" />
<Unit filename="linked_list/SinglyWithHeadNodeByTemplate/SLNode.h" />
<Unit filename="linked_list/SinglyWithHeadNodeByTemplate/SLink.cpp" />
<Unit filename="linked_list/SinglyWithHeadNodeByTemplate/SLink.h" />
<Unit filename="linked_list/SinglyWithHeadNode/SLink.cpp" />
<Unit filename="linked_list/SinglyWithHeadNode/SLink.h" />
<Unit filename="linked_list/Singly/OneLink.cpp" />
<Unit filename="linked_list/Singly/OneLink.h" />
<Unit filename="linked_list/Singly/OneLinkNode.h" />
<Unit filename="list.h" />
<Unit filename="list/search_mid_list.cpp" />
<Unit filename="main.cpp" />
<Unit filename="quiz/bitcount.cpp" />
<Unit filename="quiz/bitcount.h" />
<Unit filename="quiz/fibonacci.cpp" />
<Unit filename="quiz/greatest_common_divisor.cpp" />
<Unit filename="quiz/least_common_mutiple.cpp" />
<Unit filename="quiz/max_k.cpp" />
<Unit filename="quiz/max_min_in_array.cpp" />
<Unit filename="quiz/max_subarray_sum.cpp" />
<Unit filename="quiz/max_subarray_sum.h" />
<Unit filename="quiz/max_subarray_sum_test.cpp" />
<Unit filename="quiz/prime.cpp" />
<Unit filename="quiz/prime.h" />
<Unit filename="random/random.cpp" />
<Unit filename="random/random.h" />
<Unit filename="search/floodfill.cpp" />
<Unit filename="search/maze.cpp" />
<Unit filename="search/permutation.cpp" />
<Unit filename="search/search.h" />
<Unit filename="sort/sort.cpp" />
<Unit filename="sort/sort.h" />
<Unit filename="sort/sort_main.cpp" />
<Unit filename="string/kmp.cpp" />
<Unit filename="string/stringalg.cpp" />
<Unit filename="tree/BinaryTree.cpp" />
<Unit filename="tree/BinaryTree.h" />
<Unit filename="tree/BinaryTreeWithParent.cpp" />
<Unit filename="tree/BinaryTreeWithParent.h" />
<Unit filename="tree/tree.cpp" />
<Unit filename="tree/tree.h" />
<Extensions>
<code_completion />
<envvars />
<debugger />
<lib_finder disable_auto="1" />
</Extensions>
</Project>
</CodeBlocks_project_file>