Skip to content

Commit

Permalink
修改 0108.将有序数组转换为二叉搜索树.md 注释
Browse files Browse the repository at this point in the history
  • Loading branch information
KingArthur0205 committed Oct 28, 2021
1 parent 79623eb commit c9845b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0108.将有序数组转换为二叉搜索树.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ var sortedArrayToBST = function (nums) {
};
```

##C
## C
递归
```c
struct TreeNode* traversal(int* nums, int left, int right) {
Expand Down

0 comments on commit c9845b1

Please sign in to comment.