-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.tex
81 lines (75 loc) · 2.36 KB
/
contents.tex
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
\section{data-structures}
\subsection{Segment Tree}
\raggedbottom\lstinputlisting[style=cpp]{data-structures\segment_tree.cpp}
\hrulefill
\subsection{Segment Tree Lazy}
\raggedbottom\lstinputlisting[style=cpp]{data-structures\segment_tree_lazy.cpp}
\hrulefill
\subsection{DSU}
\raggedbottom\lstinputlisting[style=cpp]{data-structures\dsu.cpp}
\hrulefill
\section{dynamic-programming}
\subsection{Kadane}
\raggedbottom\lstinputlisting[style=cpp]{dynamic-programming\kadane.cpp}
\hrulefill
\subsection{Longest Increasing Subsequence}
\raggedbottom\lstinputlisting[style=cpp]{dynamic-programming\lis.cpp}
\hrulefill
\subsection{Prefix 2D}
\raggedbottom\lstinputlisting[style=cpp]{dynamic-programming\prefix_2d.cpp}
\hrulefill
\section{geometry}
\subsection{PT}
\raggedbottom\lstinputlisting[style=cpp]{geometry\PT.cpp}
\hrulefill
\section{graph}
\subsection{BFS}
\raggedbottom\lstinputlisting[style=cpp]{graph\bfs.cpp}
\hrulefill
\subsection{Bicolorable}
\raggedbottom\lstinputlisting[style=cpp]{graph\bicolorable.cpp}
\hrulefill
\subsection{DFS}
\raggedbottom\lstinputlisting[style=cpp]{graph\dfs.cpp}
\hrulefill
\subsection{Dijkstra}
\raggedbottom\lstinputlisting[style=cpp]{graph\dijkstra.cpp}
\hrulefill
\subsection{Dijkstra With Path}
\raggedbottom\lstinputlisting[style=cpp]{graph\dijkstra_with_path.cpp}
\hrulefill
\subsection{DSU}
\raggedbottom\lstinputlisting[style=cpp]{graph\dsu.cpp}
\hrulefill
\subsection{Floyd}
\raggedbottom\lstinputlisting[style=cpp]{graph\floyd.cpp}
\hrulefill
\subsection{Kruscal}
\raggedbottom\lstinputlisting[style=cpp]{graph\kruskal.cpp}
\hrulefill
\subsection{Toposort}
\raggedbottom\lstinputlisting[style=cpp]{graphz\toposort.cpp}
\hrulefill
\section{number-theory}
\subsection{Divisors}
\raggedbottom\lstinputlisting[style=cpp]{number-theory\divisors.cpp}
\hrulefill
\subsection{F-exp}
\raggedbottom\lstinputlisting[style=cpp]{number-theory\fexp.cpp}
\hrulefill
\subsection{Num Div}
\raggedbottom\lstinputlisting[style=cpp]{number-theory\num_div.cpp}
\hrulefill
\subsection{Sieve}
\raggedbottom\lstinputlisting[style=cpp]{number-theory\sieve.cpp}
\hrulefill
\subsection{Sum Div}
\raggedbottom\lstinputlisting[style=cpp]{number-theory\sum_div.cpp}
\hrulefill
\section{strings}
\subsection{Rabin Karp}
\raggedbottom\lstinputlisting[style=cpp]{strings\rabin_karp.cpp}
\hrulefill
\subsection{Z-Function}
\raggedbottom\lstinputlisting[style=cpp]{strings\zfunction.cpp}
\hrulefill