Python数据结构入门_ 二叉搜索树Binary Search Tree bst = BinarySearchTree()for num in (7, 5, 9, 8, 15, 16, 18, 17): bst.insert(num)max_node = bst.find_max()min_node = bst.find_min()print(f"Max node: {