-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebars.js
74 lines (74 loc) · 2.35 KB
/
sidebars.js
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
module.exports = {
networkx_guide: [
'overview',
{
type: 'category',
label: 'Getting started',
link: { type: 'doc', id: 'getting-started/getting-started' },
items: ['getting-started/basics', 'getting-started/installation'],
},
{
type: 'category',
label: 'Visualizing graphs',
link: { type: 'doc', id: 'visualization/visualization' },
items: ['visualization/basics'],
},
{
type: 'category',
label: 'Functions',
link: { type: 'doc', id: 'functions/functions' },
items: [
{
type: 'category',
label: 'Attributes',
items: ['functions/attributes/basics',],
},],
},
{
type: 'category',
label: 'Algorithms',
link: { type: 'doc', id: 'algorithms/algorithms' },
items: [
{
type: 'category',
label: 'Graph traversals',
link: { type: 'doc', id: 'algorithms/graph-traversals/overview' },
items: [
'algorithms/graph-traversals/breadth-first-search',
'algorithms/graph-traversals/depth-first-search'],
},
{
type: 'category',
label: 'Shortest path',
link: { type: 'doc', id: 'algorithms/shortest-path/overview' },
items: [
'algorithms/shortest-path/dijkstra',
'algorithms/shortest-path/a-star-search',
'algorithms/shortest-path/floyd-warshall',],
},
{
type: 'category',
label: 'Centrality algorithms',
link: { type: 'doc', id: 'algorithms/centrality-algorithms/overview' },
items: [
'algorithms/centrality-algorithms/pagerank',
'algorithms/centrality-algorithms/betweenness-centrality',
'algorithms/centrality-algorithms/degree-centrality',
'algorithms/centrality-algorithms/closeness-centrality',
'algorithms/centrality-algorithms/katz-centrality',
],
},
{
type: 'category',
label: 'Community detection',
link: { type: 'doc', id: 'algorithms/community-detection/overview' },
items: [
'algorithms/community-detection/girvan-newman',],
},
'algorithms/components/weakly-connected-components',],
},
'biggest-challenges',
'other-resources',
'faq',
],
};