1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-23 18:20:40 +08:00
Files
408CSFamily/docs/manuscripts/ds/ds.sidebar.ts

90 lines
2.0 KiB
TypeScript

export const dsSidebar = [
{
text: '基础入门',
prefix: 'basic-introduction',
collapsible: false,
children: [
{
text: '基本概念',
link: '1.basic_concepts.md'
},
{
text: '数据结构三要素',
link: '2.three_elements_of_data_structure.md'
},
{
text: '算法和算法评价',
link: '3.algorithm_and_algorithm_evaluation.md'
}
]
},
{
text: '线性表',
collapsible: false,
prefix: 'linear-table',
children: [
{
text: '基础概念和操作',
link: '1.basic_concept_and_operation.md'
},
{
text: '顺序表示',
link: '2.sequential_representation.md'
},
{
text: '链式表示-单链表',
link: '3.single_linked_list.md'
},
{
text: '链式表示-双链表',
link: '4.double_linked_list.md'
}, {
text: '链式表示-循环链表',
link: '5.circular_list.md'
},
{
text: '链式表示-静态链表',
link: '6.static_linked_list.md'
},
{
text: '总结',
link: '7.总结.md'
}
]
},
{
text: '栈和队列',
prefix: '栈和队列',
collapsible: false,
children: [
{
text: '栈-基本概念和基本操作',
link: '1.栈的基本概念和基本操作.md'
},
{
text: '栈-顺序存储结构',
link: '2.栈的顺序存储结构.md'
},
{
text: '栈-链式存储结构',
link: '3.栈的链式存储结构.md'
},
{
text: '队列-基本概念和操作',
link: '4.队列的基本概念和操作.md'
}, {
text: '队列-顺序存储结构',
link: '5.队列的顺序存储结构.md'
},
{
text: '队列-链式存储结构',
link: '6.队列的链式存储结构.md'
},
{
text: '总结',
link: '7.总结.md'
}
]
}
]