mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 15:36:29 +08:00
Merge branch 'krahets:master' into master
This commit is contained in:
commit
83ed991d40
7 changed files with 8 additions and 8 deletions
|
@ -133,7 +133,7 @@ int main() {
|
||||||
PrintUtil::printTree(bst->getRoot());
|
PrintUtil::printTree(bst->getRoot());
|
||||||
|
|
||||||
/* 查找结点 */
|
/* 查找结点 */
|
||||||
TreeNode* node = bst->search(5);
|
TreeNode* node = bst->search(7);
|
||||||
cout << endl << "查找到的结点对象为 " << node << ",结点值 = " << node->val << endl;
|
cout << endl << "查找到的结点对象为 " << node << ",结点值 = " << node->val << endl;
|
||||||
|
|
||||||
/* 插入结点 */
|
/* 插入结点 */
|
||||||
|
|
|
@ -159,7 +159,7 @@ namespace hello_algo.chapter_tree
|
||||||
PrintUtil.PrintTree(bst.getRoot());
|
PrintUtil.PrintTree(bst.getRoot());
|
||||||
|
|
||||||
/* 查找结点 */
|
/* 查找结点 */
|
||||||
TreeNode? node = bst.search(5);
|
TreeNode? node = bst.search(7);
|
||||||
Console.WriteLine("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
Console.WriteLine("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
||||||
|
|
||||||
/* 插入结点 */
|
/* 插入结点 */
|
||||||
|
|
|
@ -20,8 +20,8 @@ func TestBinarySearchTree(t *testing.T) {
|
||||||
fmt.Println("\n二叉树的根结点为:", node.Val)
|
fmt.Println("\n二叉树的根结点为:", node.Val)
|
||||||
|
|
||||||
// 查找结点
|
// 查找结点
|
||||||
node = bst.search(5)
|
node = bst.Search(7)
|
||||||
fmt.Println("\n查找到的结点对象为", node, ",结点值 =", node.Val)
|
fmt.Println("查找到的结点对象为", node, ",结点值 =", node.Val)
|
||||||
|
|
||||||
// 插入结点
|
// 插入结点
|
||||||
node = bst.insert(16)
|
node = bst.insert(16)
|
||||||
|
|
|
@ -131,7 +131,7 @@ public class binary_search_tree {
|
||||||
PrintUtil.printTree(bst.getRoot());
|
PrintUtil.printTree(bst.getRoot());
|
||||||
|
|
||||||
/* 查找结点 */
|
/* 查找结点 */
|
||||||
TreeNode node = bst.search(5);
|
TreeNode node = bst.search(7);
|
||||||
System.out.println("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
System.out.println("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
||||||
|
|
||||||
/* 插入结点 */
|
/* 插入结点 */
|
||||||
|
|
|
@ -126,7 +126,7 @@ console.log("\n初始化的二叉树为\n");
|
||||||
printTree(getRoot());
|
printTree(getRoot());
|
||||||
|
|
||||||
/* 查找结点 */
|
/* 查找结点 */
|
||||||
let node = search(5);
|
let node = search(7);
|
||||||
console.log("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
console.log("\n查找到的结点对象为 " + node + ",结点值 = " + node.val);
|
||||||
|
|
||||||
/* 插入结点 */
|
/* 插入结点 */
|
||||||
|
|
|
@ -142,7 +142,7 @@ if __name__ == "__main__":
|
||||||
print_tree(bst.root)
|
print_tree(bst.root)
|
||||||
|
|
||||||
# 查找结点
|
# 查找结点
|
||||||
node = bst.search(5)
|
node = bst.search(7)
|
||||||
print("\n查找到的结点对象为: {},结点值 = {}".format(node, node.val))
|
print("\n查找到的结点对象为: {},结点值 = {}".format(node, node.val))
|
||||||
|
|
||||||
# 插入结点
|
# 插入结点
|
||||||
|
|
|
@ -150,7 +150,7 @@ console.log('\n初始化的二叉树为\n');
|
||||||
printTree(getRoot());
|
printTree(getRoot());
|
||||||
|
|
||||||
/* 查找结点 */
|
/* 查找结点 */
|
||||||
let node = search(5);
|
let node = search(7);
|
||||||
console.log('\n查找到的结点对象为 ' + node + ',结点值 = ' + node!.val);
|
console.log('\n查找到的结点对象为 ' + node + ',结点值 = ' + node!.val);
|
||||||
|
|
||||||
/* 插入结点 */
|
/* 插入结点 */
|
||||||
|
|
Loading…
Reference in a new issue