-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.dumirc.ts
105 lines (104 loc) · 3.03 KB
/
.dumirc.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import { defineConfig } from 'dumi';
export default defineConfig({
favicons: [
'https://raw.githubusercontent.com/paiDaXing-web/learning-materials-pdf/main/logo.png',
],
base: '/algorithm',
publicPath: '/algorithm/',
themeConfig: {
name: 'Greenet',
title: 'algorithm',
logo: 'https://raw.githubusercontent.com/paiDaXing-web/learning-materials-pdf/main/logo.png',
nav: [
{
title: '算法',
link: '/algorithm/dynamic/subsequence',
},
{ title: '挑战', link: '/challenge' },
{ title: '数据结构', link: '/datastr/structure' },
{ title: 'React中的算法', link: '/react/bitfield' },
{ title: '每日一题', link: '/dailyquestion/two-sum' },
{
title: 'Github',
link: 'https://github.com/paiDaXing-web/You-Dont-Know-Algorithm',
},
],
sidebar: {
'/algorithm/dynamic': [
{
title: '动态规划',
children: [
{
link: '/algorithm/dynamic/subsequence',
title: '01.不同的子序列',
order: 1,
frontmatter: { title: '' },
},
{
link: '/algorithm/dynamic/stockTiming',
title: '02.买卖股票的最佳时机 III',
order: 2,
frontmatter: { title: '' },
},
{
link: '/algorithm/dynamic/decoding',
title: '03.解码问题',
order: 3,
frontmatter: { title: '' },
},
],
},
{
title: '栈相关',
children: [
{
link: '/algorithm/stack/reversePolish',
title: '01.逆波兰表达式求值',
order: 1,
frontmatter: { title: '' },
},
{
link: '/algorithm/stack/stockTiming',
title: '02.基本计算器',
order: 2,
frontmatter: { title: '' },
},
{
link: '/algorithm/stack/decoding',
title: '03.删除相邻重复项',
order: 3,
frontmatter: { title: '' },
},
],
},
{
title: '链表相关',
children: [
{
link: '/algorithm/chainList/reversePolish',
title: '01.奇偶链表',
order: 1,
frontmatter: { title: '' },
},
{
link: '/algorithm/chainList/stockTiming',
title: '02.删除链表重复元素II',
order: 2,
frontmatter: { title: '' },
},
{
link: '/algorithm/chainList/decoding',
title: '03.删除链表重复元素',
order: 3,
frontmatter: { title: '' },
},
],
},
],
},
prefersColor: { default: 'dark', switch: true },
footer: `Greenet MIT Licensed | Copyright © 2023-present
<br />
Powered by Greenet`,
},
});