1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-05-01 22:21:56 +08:00
Files
408CSFamily/docs/manuscripts/ds/ds.sidebar.ts
2023-03-02 22:26:28 +08:00

102 lines
2.5 KiB
TypeScript

export const dsSidebar = [
{
text: '基础入门',
prefix: 'basic-introduction',
collapsible: false,
children: [
{
text: '1.1 基本概念',
link: '1.basic_concepts.md'
},
{
text: '1.2 数据结构三要素',
link: '2.three_elements_of_data_structure.md'
},
{
text: '1.3 算法和算法评价',
link: '3.algorithm_and_algorithm_evaluation.md'
}
]
},
{
text: '线性表',
collapsible: false,
prefix: 'linear-table',
children: [
{
text: '2.1 基础概念和操作',
link: '1.basic_concept_and_operation.md'
},
{
text: '2.2 线性表的顺序表示',
link: '2.sequential_representation.md'
},
{
text: '2.3 基础概念和操作',
link: '3.chain_representation.md'
},
{
text: '2.4 基础概念和操作',
link: '4.double_linked_list.md'
}, {
text: '2.5 基础概念和操作',
link: '5.circular_list.md'
},
{
text: '2.6 基础概念和操作',
link: '6.static_linked_list.md'
},
{
text: '2.7 基础概念和操作',
link: '7.comparison_of_sequential_list_and_linked_list.md'
},
{
text: '2.8 存储结构的选取',
link: '8.selection_of_storage_structure.md'
},
{
text: '2.9 零碎知识补充',
link: '9.piecemeal_knowledge_supplement.md'
}
]
},
{
text: '栈和队列',
prefix: '栈和队列',
collapsible: false,
children: [
{
text: '3.1 栈的基本概念和基本操作',
link: '1.栈的基本概念和基本操作.md'
},
{
text: '3.2 栈的顺序存储结构',
link: '2.栈的顺序存储结构.md'
},
{
text: '3.3 栈的链式存储结构',
link: '3.栈的链式存储结构.md'
},
{
text: '3.4 队列的基本概念和操作',
link: '4.队列的基本概念和操作.md'
}, {
text: '3.5 队列的顺序存储结构',
link: '5.队列的顺序存储结构.md'
},
{
text: '3.6 队列的链式存储结构',
link: '6.队列的链式存储结构.md'
},
{
text: '3.7 栈和队列的应用',
link: '7.栈和队列的应用.md'
},
{
text: '3.8 特殊矩阵的压缩存储',
link: '8.特殊矩阵的压缩存储.md'
}
]
}
]