Skip to content

Commit 8709d0f

Browse files
committed
优化文档
1 parent 089c91a commit 8709d0f

6 files changed

+29
-8
lines changed

docs/0000-25-prefix-sum.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
. xref:0303-range-sum-query-immutable.adoc[303. Range Sum Query - Immutable]
99
. xref:0304-range-sum-query-2d-immutable.adoc[304. Range Sum Query 2D - Immutable]
10+
. xref:0437-path-sum-iii.adoc[437. Path Sum III]
1011

1112
== 参考资料
1213

docs/0098-validate-binary-search-tree.adoc

+7-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33

44
{leetcode}/problems/validate-binary-search-tree/[LeetCode - Validate Binary Search Tree^]
55

6-
image::images/0098-1.png[{image_attr}]
7-
8-
image::images/0098-2.png[{image_attr}]
9-
10-
思路很简单,利用搜索二叉树的定义,界定好树的上下界,然后递归比较就好。
11-
126
Given a binary tree, determine if it is a valid binary search tree (BST).
137

148
Assume a BST is defined as follows:
@@ -48,6 +42,13 @@ Assume a BST is defined as follows:
4842
*Explanation:* The root node's value is 5 but its right child's value is 4.
4943
----
5044

45+
== 思路分析
46+
47+
image::images/0098-1.png[{image_attr}]
48+
49+
image::images/0098-2.png[{image_attr}]
50+
51+
思路很简单,利用搜索二叉树的定义,界定好树的上下界,然后递归比较就好。
5152

5253
[[src-0098]]
5354
[tabs]

docs/0496-next-greater-element-i.adoc

+16
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,26 @@ image::images/0496-13.png[{image_attr}]
7171
7272
7373
[[src-0496]]
74+
[tabs]
75+
====
76+
一刷::
77+
+
78+
--
7479
[{java_src_attr}]
7580
----
7681
include::{sourcedir}/_0496_NextGreaterElementI.java[tag=answer]
7782
----
83+
--
84+
85+
// 二刷::
86+
// +
87+
// --
88+
// [{java_src_attr}]
89+
// ----
90+
// include::{sourcedir}/_0496_NextGreaterElementI_2.java[tag=answer]
91+
// ----
92+
// --
93+
====
7894
7995
== 参考资料
8096

docs/0530-minimum-absolute-difference-in-bst.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{leetcode}/problems/minimum-absolute-difference-in-bst/[LeetCode - Minimum Absolute Difference in BST^]
55

6-
Given a binary search tree with non-negative values, find the minimum <a href="https://en.wikipedia.org/wiki/Absolute_difference">absolute difference</a> between values of any two nodes.
6+
Given a binary search tree with non-negative values, find the minimum https://en.wikipedia.org/wiki/Absolute_difference[absolute difference] between values of any two nodes.
77

88
*Example:*
99

docs/0783-minimum-distance-between-bst-nodes.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ while the minimum difference in this tree is 1, it occurs between node 1 and nod
3636
[[src-0783]]
3737
[{java_src_attr}]
3838
----
39-
include::{sourcedir}/_0783_MinimumDistanceBetweenBSTNodes.java[tag=answer]
39+
include::{sourcedir}/_0530_MinimumAbsoluteDifferenceInBST.java[tag=answer]
4040
----
4141

src/main/java/com/diguage/algo/leetcode/_0496_NextGreaterElementI.java

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class _0496_NextGreaterElementI {
1313
// tag::answer[]
1414
/**
1515
* 单调栈,参考模板,自己书写
16+
*
17+
* @author D瓜哥 · https://www.diguage.com
18+
* @since 2024-07-05 22:40:25
1619
*/
1720
public int[] nextGreaterElement(int[] nums1, int[] nums2) {
1821
Deque<Integer> stack = new LinkedList<>();

0 commit comments

Comments
 (0)