更新代码块

This commit is contained in:
youngyangyang04
2021-08-10 22:20:48 +08:00
parent c7c34dd824
commit 8a2d42013c
192 changed files with 552 additions and 552 deletions

View File

@@ -107,7 +107,7 @@ traversal(cur->left); // 左
递归法整体代码如下:
```C++
```CPP
class Solution {
private:
int pre; // 记录前一个节点的数值
@@ -133,7 +133,7 @@ public:
这里我给出其中的一种,代码如下:
```C++
```CPP
class Solution {
private:
int pre; // 记录前一个节点的数值