-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
158 lines (145 loc) · 5.71 KB
/
mkdocs.yml
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File : mkdocs.yml
# Author : JCHRYS <[email protected]>
# Date : 15.08.2019
# Last Modified Date: 17.11.2019
# Last Modified By : JCHRYS <[email protected]>
# Main
site_name: ICPC.NINJA
site_description: 'Solutions to Competitive Programming Problems'
site_author: 'JCHRYS'
site_url: 'https://icpc.ninja'
# Repo
repo_name: 'jchrys/icpc'
repo_url: 'https://github.com/jchrys/icpc'
# Theme
theme:
name: 'material'
language: 'en'
# CDN Dependencies
extra_css:
- 'css/katex.css'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css'
extra_javascript:
- 'js/katex.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js'
# pymdownx
markdown_extensions:
- toc:
permalink: true
separator: _
- codehilite:
linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.gemoji
emoji_generator: !!python/name:pymdownx.emoji.to_png
alt: short
options:
attributes:
align: absmiddle
height: 20px
width: 20px
image_path: 'https://github.com/images/icons/emoji/unicode/'
non_standard_image_path: 'https://github.com/images/icons/emoji/'
- pymdownx.mark
- admonition
- footnotes
- meta
# Copyright
copyright: 'jchrys ©2019~'
# disqus
extra:
disqus: 'icpcninja'
# google analytics
google_analytics:
- 'UA-144755317-1'
- 'auto'
# dev
#dev_addr: '172.20.10.2:8080'
# TABLE OF CONTENTS
nav:
- Home: index.md
- Algorithms:
- Graph:
- Basics: Algorithms/Graph/Basics.md
- Graph Traversal: Algorithms/Graph/GraphTraversal.md
- Directed Graphs: Algorithms/Graph/DirectedGraphs.md
- Strong Connectivity: Algorithms/Graph/StrongConnectivity.md
- Shortest Paths:
- Preface: Algorithms/Graph/ShortestPaths/Preface.md
- Bellman-Ford: Algorithms/Graph/ShortestPaths/Bellman-Ford.md
- Dijkstra: Algorithms/Graph/ShortestPaths/Dijkstra.md
- Floyd-Warshall: Algorithms/Graph/ShortestPaths/Floyd-Warshall.md
- Eulerian Paths: Algorithms/Graph/EulerianPaths.md
- Hamiltonian Paths: Algorithms/Graph/HamiltonianPaths.md
- De Bruijn sequences: Algorithms/Graph/DeBruijnSequences.md
- Knight's tours: Algorithms/Graph/KnightsTours.md
- Maximum flow: Algorithms/Graph/MaximumFlow.md
- Minimum cut: Algorithms/Graph/MinimumCut.md
- Ford-Fulkerson: Algorithms/Graph/FordFulkerson.md
- Disjoint Paths: Algorithms/Graph/DisjointPaths.md
- Maximum Matchings: Algorithms/Graph/MaximumMatchings.md
- Konig's Theorem: Algorithms/Graph/KonigsTheorem.md
- Path Covers: Algorithms/Graph/PathCovers.md
- DFS:
- Preface: Algorithms/Graph/DFS/Preface.md
- DFSTree: Algorithms/Graph/DFS/Tree.md
- StartingFinishingTime: Algorithms/Graph/DFS/StartingFinishingTime.md
- FindingCutEdges: Algorithms/Graph/DFS/FindingCutEdges.md
- Tree:
- Basics: Algorithms/Tree/Basics.md
- Traversal : Algorithms/Tree/Traversal.md
- DP: Algorithms/Tree/DP.md
- SpanningTree: Algorithms/Tree/SpanningTree.md
- TreeQueries: Algorithms/Tree/TreeQueries.md
- Sort:
- InsertionSort: Algorithms/Sort/InsertionSort.md
- BubbleSort: Algorithms/Sort/BubbleSort.md
- HeapSort: Algorithms/Sort/HeapSort.md
- QuickSort: Algorithms/Sort/QuickSort.md
- Euclidean: Algorithms/EuclideanAlgorithm.md
- Linear:
- BinarySearch: Algorithms/Linear/BinarySearch.md
- Lower and Upper Bounds: Algorithms/Linear/LowerAndUpperBounds.md
- String:
- Preface: Algorithms/String/Preface.md
- String Hashing: Algorithms/String/StringHashing.md
- Z-Algorithm: Algorithms/String/Z-Algorithm.md
- KMP-Algorithm: Algorithms/String/KMP-Algorithm.md
- Range Queries:
- Preface: Algorithms/RangeQueries/Preface.md
- StaticArrayQueries: Algorithms/RangeQueries/StaticArrayQueries.md
- Bit:
- FastPower: Algorithms/Bit/FastPower.md
- BitManipulation: Algorithms/Bit/BitManipulation.md
- DataStructures:
- Linear:
- Stack: DataStructures/Linear/Stack.md
- Vector: DataStructures/Linear/Vector.md
- Heap: DataStructures/Linear/Heap.md
- Linked List: DataStructures/Linear/LinkedList.md
- Pair: DataStructures/Linear/Pair.md
- Hash Tables:
- Preface: DataStructures/HashTables/Preface.md
- Hash Functions: DataStructures/HashTables/HashFunctions.md
- Trees:
- SearchTree: DataStructures/Trees/SearchTree.md
- BST: DataStructures/Trees/BST.md
- RedBlackTree: DataStructures/Trees/RedBlackTree.md
- Binary Indexed Tree: DataStructures/Trees/BinaryIndexedTree.md
- Segment Tree: DataStructures/Trees/SegmentTree.md
- Trie: DataStructures/Trees/Trie.md
- NumberTheory:
- Divisibility: NumberTheory/Theorems.md
- MobiusInversion: NumberTheory/MobiusInversion.md
- MISC:
- Lemma: MISC/Lemma.md
- Language:
- Preface: Language/Preface.md
- Keywords: Language/Keywords.md
- Class: Language/Class.md
- Contribute:
- HowToContribute: Contribute/HowToContribute.md
- CodeOfConduct: Contribute/CodeOfConduct.md
- Template: Contribute/Template.md
- Emoji: Contribute/Emoji.md