forked from Snailclimb/JavaGuide-Interview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
75 lines (74 loc) · 1.69 KB
/
index.ts
File metadata and controls
75 lines (74 loc) · 1.69 KB
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
import { sidebar } from "vuepress-theme-hope";
export default sidebar({
"/": [
{
text: "项目介绍",
icon: "star",
collapsible: true,
prefix: "intro/",
children: ["faq"],
},
{
text: "面试准备(必看)",
icon: "interview",
collapsible: true,
prefix: "interview-preparation/",
children: [
"teach-you-how-to-prepare-for-the-interview-hand-in-hand",
"resume-guide",
"key-points-of-interview",
"java-roadmap",
"project-experience-guide",
"how-to-handle-interview-nerves",
"internship-experience",
],
},
{
text: "Java",
icon: "interview",
collapsible: false,
prefix: "java/",
children: [
"java-basis",
"java-collection",
"java-concurrent",
"java-jvm",
],
},
{
text: "计算机基础",
icon: "computer",
collapsible: false,
prefix: "cs-basics/",
children: ["network", "operating-system", "data-structure", "algorithms"],
},
{
text: "数据库和缓存",
icon: "database",
collapsible: false,
prefix: "database/",
children: ["mysql", "redis"],
},
{
text: "系统设计",
icon: "design",
collapsible: false,
prefix: "system-design/",
children: ["spring", "design-pattern"],
},
{
text: "分布式系统",
icon: "network",
collapsible: false,
prefix: "distributed-system/",
children: ["distributed-system"],
},
{
text: "测开",
icon: "framework",
collapsible: false,
prefix: "other/",
children: ["test-development"],
},
],
});