在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ Given two binary search trees root1 and root2. Return a list containing all the integers from both trees sorted in ascending order.
Example 1: Input: root1 = [2,1,4], root2 = [1,0,3] Input: root1 = [0,-10,10], root2 = [5,1,7,0,2] Input: root1 = [], root2 = [5,1,7,0,2] Input: root1 = [0,-10,10], root2 = []
Constraints: Each tree has at most 5000 nodes. 给你 root1 和 root2 这两棵二叉搜索树。 请你返回一个列表,其中包含 两棵树 中的所有整数并按 升序 排序。.
示例 1:
输入:root1 = [2,1,4], root2 = [1,0,3] 输入:root1 = [0,-10,10], root2 = [5,1,7,0,2] 输入:root1 = [], root2 = [5,1,7,0,2] 输入:root1 = [0,-10,10], root2 = []
输入:root1 = [1,null,8], root2 = [8,1] 提示: 每棵树最多有 5000 个节点。 |
请发表评论