forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.json
More file actions
34 lines (34 loc) · 662 Bytes
/
category.json
File metadata and controls
34 lines (34 loc) · 662 Bytes
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
{
"graph_search": {
"name": "Graph Search",
"list": {
"dfs": "DFS",
"bfs": "BFS",
"dijkstra": "Dijkstra"
}
},
"search": {
"name": "Search",
"list": {
"binary_search": "Binary Search"
}
},
"sorting": {
"name": "Sorting",
"list": {
"insertion": "Insertion Sort",
"selection": "Selection Sort",
"bubble": "Bubble Sort",
"quick": "Quicksort",
"merge": "Mergesort",
"heap" : "Heap Sort"
}
},
"etc": {
"name": "Uncategorized",
"list": {
"dp": "Dynamic Programming",
"scratch_paper": "<i class='fa fa-code'></i> Scratch Paper"
}
}
}