Update binary_tree.md

pull/71/head
Yudong Jin 2 years ago committed by GitHub
parent 003dcc56f4
commit f1ba6c679c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -68,8 +68,7 @@ comments: true
this.val = (val === undefined ? 0 : val) // 结点值 this.val = (val === undefined ? 0 : val) // 结点值
this.left = (left === undefined ? null : left) // 左子结点指针 this.left = (left === undefined ? null : left) // 左子结点指针
this.right = (right === undefined ? null : right) // 右子结点指针 this.right = (right === undefined ? null : right) // 右子结点指针
} }
``` ```
=== "TypeScript" === "TypeScript"

Loading…
Cancel
Save