Merge pull request #179 from DullSword/patch-1

docs(chapter_tree/binary_tree/二叉树表示方式 *): JS code
pull/182/head
Yudong Jin 2 years ago committed by GitHub
commit af86129dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -453,7 +453,7 @@ comments: true
```js title="" ```js title=""
/* 二叉树的数组表示 */ /* 二叉树的数组表示 */
// 直接使用 null 来表示空位 // 直接使用 null 来表示空位
let tree = [1, 2, 3, 4, 5, 6, 7, null, null, null, null, null, null, null, null] let tree = [1, 2, 3, 4, null, 6, 7, 8, 9, null, null, 12, null, null, 15];
``` ```
=== "TypeScript" === "TypeScript"

Loading…
Cancel
Save