701. Insert into a Binary Search Tree——tree

题目分析:val值比当前值小向左查找,否则向右查找,否则插入 # Definition for a binary tree node. # class TreeNode(object): #     def __init__(self, x): #         self.val = x #         self.left = None #         self.right = None
相关文章
相关标签/搜索