change path

This commit is contained in:
胡楠
2023-08-02 17:11:16 +08:00
parent d932a900d7
commit 59b63548b4
5 changed files with 16 additions and 15 deletions

4
.obsidian/app.json vendored
View File

@@ -1,5 +1,7 @@
{
"showLineNumber": true,
"showFrontmatter": true,
"showUnsupportedFiles": true
"showUnsupportedFiles": true,
"newLinkFormat": "relative",
"alwaysUpdateLinks": true
}

View File

@@ -4,11 +4,11 @@
"type": "split",
"children": [
{
"id": "940b7184c97fb74a",
"id": "18520963df8aa056",
"type": "tabs",
"children": [
{
"id": "e25807b4d76ea8f6",
"id": "d3ec8593ba5b6e7a",
"type": "leaf",
"state": {
"type": "markdown",
@@ -137,8 +137,7 @@
"state": {}
}
}
],
"currentTab": 4
]
}
],
"direction": "horizontal",
@@ -159,23 +158,24 @@
"templater-obsidian:Templater": false
}
},
"active": "e25807b4d76ea8f6",
"active": "d3ec8593ba5b6e7a",
"lastOpenFiles": [
"线性表/pic/Pasted image 20230802154616.png",
"第一章绪论/绪论.md",
"线性表/线性表.md",
"第一章绪论/pic",
"线性表/Drawing 2023-08-02 15.48.35.excalidraw.md",
"线性表/pic/Pasted image 20230802163617.png",
"线性表/pic/Pasted image 20230802154616.png",
"线性表/pic/Pasted image 20230802163607.png",
"线性表/pic",
"线性表/线性表.md",
"线性表/code",
"线性表/init.c.md",
"线性表/code/init.c",
"未命名.md",
"未命名.canvas",
"线性表/Drawing 2023-08-02 15.07.11.excalidraw.md",
"第一章绪论/绪论.md",
"线性表",
"第一章绪论/Pasted image 20230802145127.png",
"第一章绪论/pic/Pasted image 20230802145127.png",
"第一章绪论"
]
}

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -11,7 +11,7 @@
* 散列存储 hash
* 数据运算
![[Pasted image 20230802145127.png]]
![[pic/Pasted image 20230802145127.png]]

View File

@@ -1,7 +1,6 @@
相同数据类型的n个数据元素的有限序列。 L
![[Pasted image 20230802154616.png]]
![[./pic/Pasted image 20230802154616.png]]
## 顺序表
* 逻辑顺序与物理顺序相同
@@ -30,11 +29,11 @@ typedef struct LNode{
- 头插法
头节点之后插入
![[Pasted image 20230802163607.png]]
![[./pic/Pasted image 20230802163607.png]]
- 尾插法
最后插入
![[Pasted image 20230802163617.png]]
![[./pic/Pasted image 20230802163617.png]]