test(binary_search_tree): update test param all the language

use param value 7, not 5. function test param value with param value in example picture as same.
pull/189/head
龚国玮 2 years ago
parent a5e923a387
commit 96d54bff3a

@ -131,7 +131,7 @@ int main() {
PrintUtil::printTree(bst->getRoot());
/* 查找结点 */
TreeNode* node = bst->search(5);
TreeNode* node = bst->search(7);
cout << endl << "查找到的结点对象为 " << node << ",结点值 = " << node->val << endl;
/* 插入结点 */

@ -163,7 +163,7 @@ namespace hello_algo.chapter_tree
PrintUtil.PrintTree(bst.getRoot());
/* 查找结点 */
TreeNode? node = bst.search(5);
TreeNode? node = bst.search(7);
Console.WriteLine("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
/* 插入结点 */

@ -131,7 +131,7 @@ public class binary_search_tree {
PrintUtil.printTree(bst.getRoot());
/* 查找结点 */
TreeNode node = bst.search(5);
TreeNode node = bst.search(7);
System.out.println("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
/* 插入结点 */

@ -126,7 +126,7 @@ console.log("\n初始化的二叉树为\n");
printTree(getRoot());
/* 查找结点 */
let node = search(5);
let node = search(7);
console.log("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
/* 插入结点 */

@ -145,7 +145,7 @@ if __name__ == "__main__":
print_tree(bst.root)
# 查找结点
node = bst.search(5)
node = bst.search(7)
print("\n查找到的结点对象为: {},结点值 = {}".format(node, node.val))
# 插入结点

@ -150,7 +150,7 @@ console.log('\n初始化的二叉树为\n');
printTree(getRoot());
/* 查找结点 */
let node = search(5);
let node = search(7);
console.log('\n查找到的结点对象为 ' + node + ',结点值 = ' + node!.val);
/* 插入结点 */

Loading…
Cancel
Save