Update binary_search_tree.js
This commit is contained in:
parent
f1ba6c679c
commit
7dbbc3de12
@ -7,7 +7,7 @@
|
||||
const Tree = require("../include/TreeNode");
|
||||
const { printTree } = require("../include/PrintUtil");
|
||||
|
||||
/* 二叉搜索树 */
|
||||
/* 二叉搜索树 */
|
||||
var root;
|
||||
|
||||
function BinarySearchTree(nums) {
|
||||
@ -143,4 +143,4 @@ console.log("\n删除结点 2 后,二叉树为\n");
|
||||
printTree(getRoot());
|
||||
remove(4);
|
||||
console.log("\n删除结点 4 后,二叉树为\n");
|
||||
printTree(getRoot());
|
||||
printTree(getRoot());
|
||||
|
Loading…
Reference in New Issue
Block a user