Skip to content

Commit fbba56b

Browse files
committed
move project-related pages into categories
1 parent 734b9d4 commit fbba56b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/AlgoList.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,10 @@ export const algoList = [
8181
'AVL',
8282
'BTree',
8383
'SkipList',
84-
'HashMaps',
84+
'Maps',
8585
'ClosedHash',
8686
'OpenHash',
87+
"TreeMap",
8788
'Sorting and Quickselect',
8889
'BubbleSort',
8990
'CocktailSort',
@@ -99,7 +100,9 @@ export const algoList = [
99100
'BoyerMoore',
100101
'KMP',
101102
'RabinKarp',
102-
'Graph Algorithms',
103+
'Graphs',
104+
'CreateGraph',
105+
'DisjointSet',
103106
'BFS',
104107
'DFS',
105108
'Dijkstra',
@@ -108,9 +111,6 @@ export const algoList = [
108111
'LCS',
109112
'---',
110113
'DP & Extras',
111-
'CreateGraph',
112-
'DisjointSet',
113-
"TreeMap",
114114
'SplayTree',
115115
'Floyd',
116116
'DropSort',
@@ -253,11 +253,11 @@ export const algoFilter = [
253253
},
254254
{
255255
id: 'OpenHash',
256-
category: 'HashMaps',
256+
category: 'Maps',
257257
},
258258
{
259259
id: 'ClosedHash',
260-
category: 'HashMaps',
260+
category: 'Maps',
261261
},
262262
{
263263
id: 'BubbleSort',
@@ -313,23 +313,23 @@ export const algoFilter = [
313313
},
314314
{
315315
id: 'BFS',
316-
category: 'Graph Algorithms',
316+
category: 'Graphs',
317317
},
318318
{
319319
id: 'DFS',
320-
category: 'Graph Algorithms',
320+
category: 'Graphs',
321321
},
322322
{
323323
id: 'Dijkstra',
324-
category: 'Graph Algorithms',
324+
category: 'Graphs',
325325
},
326326
{
327327
id: 'Prim',
328-
category: 'Graph Algorithms',
328+
category: 'Graphs',
329329
},
330330
{
331331
id: 'Kruskal',
332-
category: 'Graph Algorithms',
332+
category: 'Graphs',
333333
},
334334
{
335335
id: 'LCS',
@@ -341,15 +341,15 @@ export const algoFilter = [
341341
},
342342
{
343343
id: 'CreateGraph',
344-
category: 'DP & Extras',
344+
category: 'Graphs',
345345
},
346346
{
347347
id: "DisjointSet",
348-
category: 'DP & Extras'
348+
category: 'Graphs'
349349
},
350350
{
351351
id: 'TreeMap',
352-
category: 'DP & Extras',
352+
category: 'Maps',
353353
},
354354
{
355355
id: 'SplayTree',

0 commit comments

Comments
 (0)