-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
55 lines (54 loc) · 1.88 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
site_name: DsaDotnet Docs
site_url: https://timmoth.github.io/DsaDotnet/
site_description: A collection of algorithms and datastructures.
site_author: Timmoth
repo_url: https://github.com/Timmoth/DsaDotnet/
edit_uri: edit/main/docs
theme:
name: readthedocs
highlightjs: true
logo: assets/logo.png
hljs_languages:
- csharp
nav:
- Overview ✅: index.md
- Releases 📒: releases.md
- Tests 🐞: tests.md
- Benchmarks ⏱️: benchmarks.md
- Contributing 🙏: contributing.md
- Arithmetic:
- Greatest Common Divisor: Arithmetic/greatest_common_divisor.md
- Least Common Multiple: Arithmetic/least_common_multiple.md
- Data Structures:
- Binary Tree: DataStructures/binary_tree.md
- Kvp Binary Tree: DataStructures/kvp_binary_tree.md
- Unweighted Graph: DataStructures/unweighted_graph.md
- Weighted Graph: DataStructures/weighted_graph.md
- Geometry:
- Circle: Geometry/circle.md
- Ellipse: Geometry/ellipse.md
- Polygon: Geometry/polygon.md
- Polyline: Geometry/polyline.md
- Rectangle: Geometry/rectangle.md
- RegularPolygon: Geometry/regular_polygon.md
- Triangle: Geometry/triangle.md
- Search:
- Binary: Search/binary_search.md
- Breadth first: Search/breadth_first_search.md
- Depth First: Search/depth_first_search.md
- Djikstras: Search/djikstras.md
- Linear: Search/linear_search.md
- Sequence And Series:
- Factorial: SequenceAndSeries/factorial.md
- Fibonacci: SequenceAndSeries/fibonacci.md
- Primes: SequenceAndSeries/primes.md
- Sorting:
- Bubble: Sorting/bubble_sort.md
- Insertion: Sorting/insertion_sort.md
- Merge: Sorting/merge_sort.md
- Quick: Sorting/quick_sort.md
- Text:
- Knuth Morris Pratt: Text/knuth_morris_pratt.md
- Levenshtein Distance: Text/levenshtein_distance.md
markdown_extensions:
- tables