-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.txt
59 lines (52 loc) · 3.32 KB
/
contents.txt
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
# Any line followed by a '#' character is ignored
# Section headings must be in square brackets
# Subsections within a section should follow the format:
# [filename within code directory][tab character ][subsection title]
# tab character:
[Data Structures]
Data Structures/BIT.cpp BIT
Data Structures/BIT2D.cpp BIT2D
Data Structures/BIT2DSparse.cpp BIT2D Sparse
Data Structures/PrefixSum2D.cpp Prefix Sum 2D
Data Structures/SegTree.cpp SegTree
Data Structures/SegTreeLazy.cpp SegTree Lazy
Data Structures/SegTreeIterativa.cpp SegTree Iterativa
Data Structures/SegTreeLazyIterativa.cpp SegTree Lazy Iterativa
Data Structures/SegTreePersistente.cpp SegTree Persistente
Data Structures/SparseTable.cpp Sparse Table
[dp]
dp/Digit DP.cpp Digit DP
# dp/LCS.cpp LCS
dp/LIS.cpp LIS
dp/SOS DP.cpp SOS DP
[Geometry]
Geometry/ConvexHull.cpp ConvexHull
Geometry/Geometry - General.cpp Geometry - General
Geometry/LineContainer.cpp LineContainer
[Grafos]
Grafos/2SAT.cpp 2SAT
Grafos/BlockCutTree.cpp BlockCutTree
Grafos/CentroidDecomposition.cpp Centroid Decomposition
Grafos/Dijkstra.cpp Dijkstra
Grafos/Dinic.cpp Dinic
Grafos/DSU Persistente.cpp DSU Persistente
Grafos/DSU.cpp DSU
Grafos/Euler Path.cpp Euler Path
Grafos/HLD.cpp HLD
Grafos/Kruskal.cpp Kruskal
Grafos/LCA.cpp LCA
Grafos/MinCostMaxFlow.cpp MinCostMaxFlow - MCMF
Grafos/SCC - Kosaraju.cpp SCC - Kosaraju
Grafos/Tarjan.cpp Tarjan
[Math]
Math/fexp.cpp fexp
[others]
others/Hungarian.cpp Hungarian
others/MO.cpp MO
[Strings]
Strings/hash.cpp Hash
Strings/hash2.cpp Hash2
Strings/KMP.cpp KMP
Strings/Manacher.cpp Manacher
Strings/trie.cpp trie
Strings/Z-Function.cpp Z-Function