更新代码块

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

@@ -96,7 +96,7 @@ return root;
整体代码如下:
```C++
```CPP
class Solution {
public:
TreeNode* insertIntoBST(TreeNode* root, int val) {
@@ -126,7 +126,7 @@ void traversal(TreeNode* cur, int val)
代码如下:
```C++
```CPP
class Solution {
private:
TreeNode* parent;
@@ -172,7 +172,7 @@ public:
代码如下:
```C++
```CPP
class Solution {
public:
TreeNode* insertIntoBST(TreeNode* root, int val) {