File tree Expand file tree Collapse file tree 8 files changed +80
-77
lines changed
Expand file tree Collapse file tree 8 files changed +80
-77
lines changed Original file line number Diff line number Diff line change 33* [ Introduction] ( README.md )
44* [ 介绍] ( readme-doc.md )
55
6- ## 剑指 Offer
6+ ## 文档 < a id = " docs " ></ a >
77
8- * [ OF3.数组中重复的数字] ( lcof/of003/README.md )
9- * [ OF37.序列化二叉树] ( lcof/of037/README.md )
10- * [ OF14-I.剪绳子] ( lcof/of014-I/README.md )
11- * [ OF14-II.剪绳子] ( lcof/of014-II/README.md )
8+ * [ 剑指 Offer] ( docs/jzof/README.md )
9+ * [ OF14-II.剪绳子] ( docs/jzof/of014-ii.md )
10+ * [ OF14-I.剪绳子] ( docs/jzof/of014-i.md )
11+ * [ OF37.序列化二叉树] ( docs/jzof/of037.md )
12+ * [ OF3.数组中重复的数字] ( docs/jzof/of003.md )
1213
1314## LeetCode
1415
Original file line number Diff line number Diff line change 1+ # 剑指 Offer
2+
3+ jzof
4+
File renamed without changes.
Original file line number Diff line number Diff line change 1+ # OF14-I.剪绳子
2+
3+ > \[ !WARNING\| style: flat \] This problem is temporarily not PR, please submit [ Create Pull Request PR] ( https://github.com/kylesliu/awesome-golang-algorithm )
4+
5+ ## 题目描述
6+
7+ ....
8+
9+ ** 范例 :**
10+
11+ ``` text
12+ Input: n=1
13+ Output: 1
14+ ```
15+
16+ ## 题意
17+
18+ > ...
19+
20+ ## 题解
21+
22+ ### 思路1
23+
24+ > ...
25+ >
26+ > ``` go
27+ >
28+ > ` ` `
29+
30+ ## 结语
31+
32+ 如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-algorithm](https://github.com/kylesliu/awesome-golang-algorithm)
33+
Original file line number Diff line number Diff line change 1+ # OF14-II.剪绳子
2+
3+ > \[ !WARNING\| style: flat \] This problem is temporarily not PR, please submit [ Create Pull Request PR] ( https://github.com/kylesliu/awesome-golang-algorithm )
4+
5+ ## 题目描述
6+
7+ ....
8+
9+ ** 范例 :**
10+
11+ ``` text
12+ Input: n=1
13+ Output: 1
14+ ```
15+
16+ ## 题意
17+
18+ > ...
19+
20+ ## 题解
21+
22+ ### 思路1
23+
24+ > ...
25+ >
26+ > ``` go
27+ >
28+ > ` ` `
29+
30+ ## 结语
31+
32+ 如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-algorithm](https://github.com/kylesliu/awesome-golang-algorithm)
33+
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ description: 剑指 Offer 37. 序列化二叉树
1212
1313请设计一个算法来实现二叉树的序列化与反序列化。这里不限定你的序列 / 反序列化算法执行逻辑,你只需要保证一个二叉树可以被序列化为一个字符串并且将这个字符串反序列化为原始的树结构。
1414
15-
16-
1715### ** 示例 1:**
1816
1917``` go
@@ -30,15 +28,13 @@ description: 剑指 Offer 37. 序列化二叉树
3028
3129## 题解
3230
33- ### 思路1 :
31+ ### 思路1 :
3432
3533** 算法流程:**
3634
37- 1 .
38- ** 复杂度分析:**
39-
40- * ** 时间复杂度** $$ O(N) $$ ** :** \)
41- * ** 空间复杂度** $$ O(N) $$ ** :**
35+ 1 . ** 复杂度分析:**
36+ 2 . ** 时间复杂度** $$ O(N) $$ ** :** \)
37+ 3 . ** 空间复杂度** $$ O(N) $$ ** :**
4238
4339#### 代码
4440
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments