1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-15 19:01:40 +08:00

feat: 修改目录结构,优化hope主题配置

This commit is contained in:
喜欢芝士的妹妹
2023-02-03 09:34:39 +08:00
parent 278ff3e4bd
commit 47c5b60c00
39 changed files with 85 additions and 79 deletions

View File

@@ -33,31 +33,45 @@ export default {
logo: "/assets/408_logo.png",
navbar: require("./config/navbar/index"), // 注意这个关键字有所改变
sidebar: require("./config/sidebar/index"),
// 主题布局选项
repo: "https://github.com/mmdapl/408CSFamily",
logoDark:"/assets/408_logo.png",
// 博客配置
blog:{
name:'',
medias:{
"BiliBili": "哔哩哔哩"
}
name:'测试',
avatar:'',
description:'',
intro:'',
roundAvatar:true,
timeline:"时间轴的顶部文字",
// articleInfo:"",
// medias:{
// "BiliBili": "哔哩哔哩"
// }
},
lastUpdated: true,
lastUpdatedText: "最近更新",
contributorsText: '贡献者',
notFound: ['宝贝不要急,我努力更新就会慢慢有的哟...想要什么,也欢迎微信后台私信!'],// 自定义404页面提示语数组
backToHome: '返回首页', // 返回首页
repo: "https://github.com/mmdapl/408CSFamily",
sidebarDepth: 1,
editLink: false,
// 默认为 "Edit this page"
// editLinkText: '帮助我们改善此页面!',
search: true,
searchMaxSuggestions: 10,
plugins:{
plugins: {
// 开启博客功能
blog:true
}
// blog:true,
// 代码块
mdEnhance: {
codetabs: true,
},
},
}),
// plugins: [
// // 全文搜索 参考配置https://github.com/vuepress/vuepress-next/blob/main/docs/.vuepress/config.ts

View File

@@ -1,16 +1,16 @@
module.exports = [
{
text: '页',
text: '页',
link: '/'
},
{
text: "恶补算法",
text: "算法恶补",
children: [{
text: '习题练手',
link: '/Algorithm/topic_practice'
link: '/algorithm/topic_practice'
}, {
text: '刷题笔记',
link: '/Algorithm/algorithm_note'
link: '/algorithm/algorithm_note'
}, {
text: '在线刷题',
children: [{
@@ -25,20 +25,20 @@ module.exports = [
},
{
text: "数据结构",
link: "/DS/basic_introduction"
link: "/ds/basic_introduction"
},
{
text: "操作系统",
link: "/OS/"
link: "/os/"
},
{
text: "计算机组成原理",
link: "/CCP/"
link: "/ccp/"
},
{
text: "计算机网络",
link: "/CN/"
link: "/cn/"
}, {
text: '其他资料',
children: [{
@@ -51,21 +51,21 @@ module.exports = [
text: "思维导图",
children: [{
text: '数据结构',
link: '/NoteMap/DS_Map'
link: '/note-map/DS_Map'
}, {
text: '操作系统',
link: '/NoteMap/OS_Map'
link: '/note-map/OS_Map'
}, {
text: '计算机组成原理',
link: '/NoteMap/CCP_Map'
link: '/note-map/CCP_Map'
}, {
text: '计算机网络',
link: '/NoteMap/CN_Map'
link: '/note-map/CN_Map'
}]
}]
},
{
text: "大事记",
link: "/Big_Event_History/"
link: "/big-event-history/"
},
];

View File

@@ -3,16 +3,16 @@ module.exports = [
// 'linear_table',
{
text: '基础入门',
link: "/DS/basic_introduction",
link: "/ds/basic_introduction",
collapsible: false,
children: [{
text: '1.1 基本概念',
link: '/DS/basic_introduction/1.basic_concepts.md'
link: '/ds/basic_introduction/1.basic_concepts.md'
}, {
text: '1.2 数据结构三要素',
link: '/DS/basic_introduction/2.three_elements_of_data_structure.md'
link: '/ds/basic_introduction/2.three_elements_of_data_structure.md'
}, {
text: '1.3 算法和算法评价',
link: '/DS/basic_introduction/3.algorithm_and_algorithm_evaluation.md'
link: '/ds/basic_introduction/3.algorithm_and_algorithm_evaluation.md'
}],
}]

View File

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

View File

@@ -1,8 +1,8 @@
module.exports = {
// "/category/": require("../../category/sidebar_contents"),
// "/DataStructure/": require("../../category/sidebar_contents"),
"/DS": require("./ds_content.js"),
"/DS/coding": require("./algorithm_content")
"/ds": require("./ds_content.js"),
"/ds/coding": require("./algorithm_content")
};

View File

@@ -1,7 +1,7 @@
---
home: true
heroImage: https://static01.imgkr.com/temp/f0108d7c178b4ce196e43ebec14fbf23.png
heroImageDark: ://vuejs.org/images/logo.png
heroImageDark: http://vuejs.org/images/logo.png
heroText: 计算机应试全家桶
externalLinkIcon: false
tagline: 磨刀不误砍柴工、读完硕士再打工,笔记内容持续更新...
@@ -82,9 +82,8 @@ footer: Copyrights © 2015-2021 妍荣姑娘网络工作室 | <a href="https:
由于平台、网络等原因,在线浏览容易出现加载面、加载不出来等常见问题,因此非常建议在本地进行浏览、学习;**下面指令默认你已经安装[Git](https://git-scm.com/download)、[NPM](https://www.npmjs.com/)、[PNPM](https://www.pnpm.cn/)、[Yarn](https://yarn.bootcss.com/)、[Node](http://nodejs.cn)等环境,并对此有一定了解!**
<CodeGroup>
<CodeGroupItem title="PNPM推荐" >
::: code-tabs#shell
@tab PNPM推荐
```bash:no-line-numbers
## 进入cmd命令行直接克隆仓库
@@ -103,9 +102,8 @@ pnpm install
pnpm dev
```
</CodeGroupItem>
<CodeGroupItem title=" NPM ">
@tab NPM
```bash:no-line-numbers
## 进入cmd命令行直接克隆仓库
@@ -125,12 +123,7 @@ npm run dev
```
</CodeGroupItem>
<CodeGroupItem title=" YARN ">
@tab YARN
```bash:no-line-numbers
## 进入cmd命令行直接克隆仓库
@@ -149,10 +142,7 @@ yarn install
yarn run dev
```
</CodeGroupItem>
</CodeGroup>
:::
查看项目启动日志并访问:[http://127.0.0.1:4200](http://localhost:4200),开启学习之旅吧~
@@ -195,7 +185,6 @@ yarn run dev
---
### 联系作者

View File

@@ -6,7 +6,6 @@
* @LastEditors: B站&公众号Rong姐姐好可爱
* @LastEditTime: 2022-04-21 23:19:10
*/
module.exports=[
]

View File

@@ -2,9 +2,9 @@
title: null
date: 2021-03-07 23:04:24
permalink: /pages/c1bec1/
categories:
category:
- DataStructure
tags:
tag:
-
---

View File

Before

Width:  |  Height:  |  Size: 650 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View File

@@ -7,7 +7,6 @@
* @LastEditTime: 2022-04-19 08:56:56
-->
## 恶补算法
## 算法恶补
>todo

View File

@@ -1,6 +1,8 @@
---
title: 线性表
---
<!--
* @Description:
* @Version: Beta1.0

View File

Before

Width:  |  Height:  |  Size: 2.0 MiB

After

Width:  |  Height:  |  Size: 2.0 MiB

View File

@@ -1,7 +1,6 @@
{
"name": "408CSFamily",
"version": "1.0.0",
"description": "",
"description": "专业代号408 ,计算机基础知识点合集",
"main": "index.js",
"scripts": {
"dev": "vuepress dev docs",
@@ -11,12 +10,16 @@
"github": "bash scripts/page_deploy.sh",
"clean": "find . -name \"node_modules\" -type d -exec rm -rf '{}' +"
},
"author": "Rong姐姐好可爱",
"license": "MIT",
"author":{
"name": "Chu Fan",
"email": "fairy_408@2925.com",
"url": "https://github.com/142vip"
},
"devDependencies": {
"@vuepress/client": "2.0.0-beta.60",
"vue": "^3.2.45",
"vuepress": "2.0.0-beta.60",
"vuepress-theme-hope": "^2.0.0-beta.171"
}
},
"license": "MIT"
}