diff --git a/.obsidian/app.json b/.obsidian/app.json index dd3ff1b..9856d35 100644 --- a/.obsidian/app.json +++ b/.obsidian/app.json @@ -1,5 +1,7 @@ { "showLineNumber": true, "showFrontmatter": true, - "showUnsupportedFiles": true + "showUnsupportedFiles": true, + "newLinkFormat": "relative", + "alwaysUpdateLinks": true } \ No newline at end of file diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index 1c4634d..6c07fe5 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -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", "第一章绪论" ] } \ No newline at end of file diff --git a/第一章绪论/Pasted image 20230802145127.png b/第一章绪论/pic/Pasted image 20230802145127.png similarity index 100% rename from 第一章绪论/Pasted image 20230802145127.png rename to 第一章绪论/pic/Pasted image 20230802145127.png diff --git a/第一章绪论/绪论.md b/第一章绪论/绪论.md index 560e849..59c2b3a 100644 --- a/第一章绪论/绪论.md +++ b/第一章绪论/绪论.md @@ -11,7 +11,7 @@ * 散列存储 (hash) * 数据运算 -![[Pasted image 20230802145127.png]] +![[pic/Pasted image 20230802145127.png]] diff --git a/线性表/线性表.md b/线性表/线性表.md index c602ce5..4d3e41c 100644 --- a/线性表/线性表.md +++ b/线性表/线性表.md @@ -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]]