leetcode刷题三十六

Posted hhh江月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题三十六相关的知识,希望对你有一定的参考价值。

leetcode刷题三十六

文章目录

题目叙述

https://leetcode-cn.com/problems/all-elements-in-two-binary-search-trees/

给你 root1 和 root2 这两棵二叉搜索树。请你返回一个列表,其中包含 两棵树 中的所有整数并按 升序 排序。.

题目解答

这里主要是首先采用前序遍历先获取得到两个树的元素,然后将两个树的元素合并起来进行排序就可以了。

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def getAllElements(self, root1: TreeNode, root2: TreeNode) -> List[int]:
        L1 = []      
        def t1(node):
            L1.append(node.val) 
            if node.left:
                t1(node.left)
            if node.right :
                t1(node.right)
        if not root1:
            pass
        else:
            t1(root1)

        L2 = []       
        def t2(node):
            L2.append(node.val) 
            if node.left:
                t2(node.left)
            if node.right :
                t2(node.right)
        if not root2:
            pass
        else:
            t2(root2)

        L = []
        for i in L1:
            L.append(i)
        for j in L2:
            L.append(j)
        L.sort()

        return L
        


题目运行结果

以上是关于leetcode刷题三十六的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题三十四

leetcode刷题三十

leetcode刷题三十七

leetcode刷题三十八

leetcode刷题三十三

leetcode刷题三十二