更新 0700.二叉搜索树中的搜索 排版格式修复

This commit is contained in:
jinbudaily
2023-07-21 20:20:25 +08:00
parent eadc704c38
commit ac239bc437

View File

@ -18,9 +18,9 @@
在上述示例中,如果要找的值是 5但因为没有节点值为 5我们应该返回 NULL。
# 视频讲解
## 算法公开课
**《代码随想录》算法视频公开课:[不愧是搜索树,这次搜索有方向了!| LeetCode700.二叉搜索树中的搜索](https://www.bilibili.com/video/BV1wG411g7sF),相信结合视频在看本篇题解,更有助于大家对本题的理解**。
**[《代码随想录》算法视频公开课](https://programmercarl.com/other/gongkaike.html)[不愧是搜索树,这次搜索有方向了!| LeetCode700.二叉搜索树中的搜索](https://www.bilibili.com/video/BV1wG411g7sF),相信结合视频在看本篇题解,更有助于大家对本题的理解**。
## 思路
@ -415,7 +415,7 @@ object Solution {
}
```
### rust
### Rust
递归:
@ -469,3 +469,4 @@ impl Solution {
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
</a>