Skip to content

Commit b703125

Browse files
committed
sorted category.json by keys ascending
1 parent c0ddd46 commit b703125

File tree

1 file changed

+98
-98
lines changed

1 file changed

+98
-98
lines changed

algorithm/category.json

Lines changed: 98 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,100 @@
11
{
2-
"graph_search": {
3-
"name": "Graph Search",
4-
"list": {
5-
"dfs": "DFS",
6-
"bfs": "BFS",
7-
"dijkstra": "Dijkstra",
8-
"bellman_ford": "Bellman-Ford",
9-
"floyd_warshall": "Floyd-Warshall",
10-
"topological_sort": "Topological-Sort",
11-
"bridges": "Find-Bridges",
12-
"page_rank": "PageRank Algorithm"
13-
}
14-
},
15-
"tree": {
16-
"name": "Tree",
17-
"list": {
18-
"binary_search_tree": "Binary Search Tree",
19-
"binary_tree_traversal": "Binary Tree Traversal"
20-
}
21-
},
22-
"number_theory": {
23-
"name": "Number Theory",
24-
"list": {
25-
"seive_of_erathrones": "Seive of Erathrones",
26-
"euclidean_algorithm": "Euclidean Algorithm"
27-
}
28-
},
29-
"cryptography": {
30-
"name": "Cryptography",
31-
"list": {
32-
"caesar_cipher": "Caesar Cipher",
33-
"affine_cipher": "Affine Cipher"
34-
}
35-
},
36-
"mst": {
37-
"name": "Minimum Spanning Tree",
38-
"list": {
39-
"prim": "Prim's Algorithm",
40-
"kruskal": "Kruskal's Algorithm"
41-
}
42-
},
43-
"search": {
44-
"name": "Search",
45-
"list": {
46-
"binary_search": "Binary Search"
47-
}
48-
},
49-
"sorting": {
50-
"name": "Sorting",
51-
"list": {
52-
"insertion": "Insertion Sort",
53-
"selection": "Selection Sort",
54-
"bubble": "Bubble Sort",
55-
"merge": "Merge Sort",
56-
"radix": "Radix Sort",
57-
"quick": "Quicksort",
58-
"heap": "Heapsort",
59-
"shell": "Shellsort",
60-
"cycle": "Cycle Sort",
61-
"comb": "Comb Sort"
62-
}
63-
},
64-
"string": {
65-
"name": "String",
66-
"list": {
67-
"edit_distance": "Edit Distance",
68-
"knuth_morris_pratt": "KMP Substring Search",
69-
"rabin_karp_algorithm": "Rabin-Karp Algorithm",
70-
"suffix_array": "Suffix Array (construction & usage)"
71-
}
72-
},
73-
"dp": {
74-
"name": "Dynamic Programming",
75-
"list": {
76-
"fibonacci": "Fibonacci Sequence",
77-
"knapsack_problem": "Knapsack Problem",
78-
"longest_increasing_subsequence": "Longest Increasing Subsequence",
79-
"max_subarray": "Maximum Subarray",
80-
"max_sum_path": "Maximum Sum Path",
81-
"sliding_window": "Sliding Window",
82-
"integer_partition": "Integer Partition",
83-
"ugly_numbers": "Ugly Numbers",
84-
"pascal_triangle": "Pascal's Trangle",
85-
"catalan_number": "Catalan Number"
86-
}
87-
},
88-
"greedy": {
89-
"name": "Greedy",
90-
"list": {
91-
"job_scheduling": "Job Scheduling Problem"
92-
}
93-
},
94-
"etc": {
95-
"name": "Uncategorized",
96-
"list": {
97-
"flood_fill": "Flood Fill"
98-
}
99-
}
2+
"cryptography": {
3+
"list": {
4+
"affine_cipher": "Affine Cipher",
5+
"caesar_cipher": "Caesar Cipher"
6+
},
7+
"name": "Cryptography"
8+
},
9+
"dp": {
10+
"list": {
11+
"catalan_number": "Catalan Number",
12+
"fibonacci": "Fibonacci Sequence",
13+
"integer_partition": "Integer Partition",
14+
"knapsack_problem": "Knapsack Problem",
15+
"longest_increasing_subsequence": "Longest Increasing Subsequence",
16+
"max_subarray": "Maximum Subarray",
17+
"max_sum_path": "Maximum Sum Path",
18+
"pascal_triangle": "Pascal's Trangle",
19+
"sliding_window": "Sliding Window",
20+
"ugly_numbers": "Ugly Numbers"
21+
},
22+
"name": "Dynamic Programming"
23+
},
24+
"graph_search": {
25+
"list": {
26+
"bellman_ford": "Bellman-Ford",
27+
"bfs": "BFS",
28+
"bridges": "Find-Bridges",
29+
"dfs": "DFS",
30+
"dijkstra": "Dijkstra",
31+
"floyd_warshall": "Floyd-Warshall",
32+
"page_rank": "PageRank Algorithm",
33+
"topological_sort": "Topological-Sort"
34+
},
35+
"name": "Graph Search"
36+
},
37+
"greedy": {
38+
"list": {
39+
"job_scheduling": "Job Scheduling Problem"
40+
},
41+
"name": "Greedy"
42+
},
43+
"mst": {
44+
"list": {
45+
"kruskal": "Kruskal's Algorithm",
46+
"prim": "Prim's Algorithm"
47+
},
48+
"name": "Minimum Spanning Tree"
49+
},
50+
"number_theory": {
51+
"list": {
52+
"euclidean_algorithm": "Euclidean Algorithm",
53+
"seive_of_erathrones": "Seive of Erathrones"
54+
},
55+
"name": "Number Theory"
56+
},
57+
"search": {
58+
"list": {
59+
"binary_search": "Binary Search"
60+
},
61+
"name": "Search"
62+
},
63+
"sorting": {
64+
"list": {
65+
"bubble": "Bubble Sort",
66+
"comb": "Comb Sort",
67+
"cycle": "Cycle Sort",
68+
"heap": "Heapsort",
69+
"insertion": "Insertion Sort",
70+
"merge": "Merge Sort",
71+
"quick": "Quicksort",
72+
"radix": "Radix Sort",
73+
"selection": "Selection Sort",
74+
"shell": "Shellsort"
75+
},
76+
"name": "Sorting"
77+
},
78+
"string": {
79+
"list": {
80+
"edit_distance": "Edit Distance",
81+
"knuth_morris_pratt": "KMP Substring Search",
82+
"rabin_karp_algorithm": "Rabin-Karp Algorithm",
83+
"suffix_array": "Suffix Array (construction & usage)"
84+
},
85+
"name": "String"
86+
},
87+
"tree": {
88+
"list": {
89+
"binary_search_tree": "Binary Search Tree",
90+
"binary_tree_traversal": "Binary Tree Traversal"
91+
},
92+
"name": "Tree"
93+
},
94+
"uncategorized": {
95+
"list": {
96+
"flood_fill": "Flood Fill"
97+
},
98+
"name": "Uncategorized"
99+
}
100100
}

0 commit comments

Comments
 (0)