diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README.md b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README.md index afd7545d9c5b0..20d5c6c3b5cd4 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README.md +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README.md @@ -59,7 +59,11 @@ tags: -### 方法一 +### 方法一:DFS + 归并 + +由于两棵树都是二叉搜索树,所以我们可以通过中序遍历得到两棵树的节点值序列 $\textit{a}$ 和 $\textit{b}$,然后使用双指针归并两个有序数组,得到最终的答案。 + +时间复杂度 $O(n+m)$,空间复杂度 $O(n+m)$。其中 $n$ 和 $m$ 分别是两棵树的节点数。 @@ -73,36 +77,36 @@ tags: # self.left = left # self.right = right class Solution: - def getAllElements(self, root1: TreeNode, root2: TreeNode) -> List[int]: - def dfs(root, t): + def getAllElements( + self, root1: Optional[TreeNode], root2: Optional[TreeNode] + ) -> List[int]: + def dfs(root: Optional[TreeNode], nums: List[int]) -> int: if root is None: return - dfs(root.left, t) - t.append(root.val) - dfs(root.right, t) - - def merge(t1, t2): - ans = [] - i = j = 0 - while i < len(t1) and j < len(t2): - if t1[i] <= t2[j]: - ans.append(t1[i]) - i += 1 - else: - ans.append(t2[j]) - j += 1 - while i < len(t1): - ans.append(t1[i]) + dfs(root.left, nums) + nums.append(root.val) + dfs(root.right, nums) + + a, b = [], [] + dfs(root1, a) + dfs(root2, b) + m, n = len(a), len(b) + i = j = 0 + ans = [] + while i < m and j < n: + if a[i] <= b[j]: + ans.append(a[i]) i += 1 - while j < len(t2): - ans.append(t2[j]) + else: + ans.append(b[j]) j += 1 - return ans - - t1, t2 = [], [] - dfs(root1, t1) - dfs(root2, t2) - return merge(t1, t2) + while i < m: + ans.append(a[i]) + i += 1 + while j < n: + ans.append(b[j]) + j += 1 + return ans ``` #### Java @@ -125,40 +129,37 @@ class Solution: */ class Solution { public List getAllElements(TreeNode root1, TreeNode root2) { - List t1 = new ArrayList<>(); - List t2 = new ArrayList<>(); - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } - - private void dfs(TreeNode root, List t) { - if (root == null) { - return; - } - dfs(root.left, t); - t.add(root.val); - dfs(root.right, t); - } - - private List merge(List t1, List t2) { - List ans = new ArrayList<>(); + List a = new ArrayList<>(); + List b = new ArrayList<>(); + dfs(root1, a); + dfs(root2, b); + int m = a.size(), n = b.size(); int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1.get(i) <= t2.get(j)) { - ans.add(t1.get(i++)); + List ans = new ArrayList<>(); + while (i < m && j < n) { + if (a.get(i) <= b.get(j)) { + ans.add(a.get(i++)); } else { - ans.add(t2.get(j++)); + ans.add(b.get(j++)); } } - while (i < t1.size()) { - ans.add(t1.get(i++)); + while (i < m) { + ans.add(a.get(i++)); } - while (j < t2.size()) { - ans.add(t2.get(j++)); + while (j < n) { + ans.add(b.get(j++)); } return ans; } + + private void dfs(TreeNode root, List nums) { + if (root == null) { + return; + } + dfs(root.left, nums); + nums.add(root.val); + dfs(root.right, nums); + } } ``` @@ -179,33 +180,36 @@ class Solution { class Solution { public: vector getAllElements(TreeNode* root1, TreeNode* root2) { - vector t1; - vector t2; - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } + vector a, b, ans; + dfs(root1, a); + dfs(root2, b); - void dfs(TreeNode* root, vector& t) { - if (!root) return; - dfs(root->left, t); - t.push_back(root->val); - dfs(root->right, t); - } - - vector merge(vector& t1, vector& t2) { - vector ans; int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1[i] <= t2[j]) - ans.push_back(t1[i++]); - else - ans.push_back(t2[j++]); + while (i < a.size() && j < b.size()) { + if (a[i] <= b[j]) { + ans.push_back(a[i++]); + } else { + ans.push_back(b[j++]); + } + } + while (i < a.size()) { + ans.push_back(a[i++]); + } + while (j < b.size()) { + ans.push_back(b[j++]); } - while (i < t1.size()) ans.push_back(t1[i++]); - while (j < t2.size()) ans.push_back(t2[j++]); return ans; } + +private: + void dfs(TreeNode* root, vector& nums) { + if (root == nullptr) { + return; + } + dfs(root->left, nums); + nums.push_back(root->val); + dfs(root->right, nums); + } }; ``` @@ -220,42 +224,37 @@ public: * Right *TreeNode * } */ -func getAllElements(root1 *TreeNode, root2 *TreeNode) []int { - var dfs func(root *TreeNode) []int - dfs = func(root *TreeNode) []int { +func getAllElements(root1 *TreeNode, root2 *TreeNode) (ans []int) { + var dfs func(*TreeNode, *[]int) + dfs = func(root *TreeNode, nums *[]int) { if root == nil { - return []int{} + return } - left := dfs(root.Left) - right := dfs(root.Right) - left = append(left, root.Val) - left = append(left, right...) - return left + dfs(root.Left, nums) + *nums = append(*nums, root.Val) + dfs(root.Right, nums) } - merge := func(t1, t2 []int) []int { - var ans []int - i, j := 0, 0 - for i < len(t1) && j < len(t2) { - if t1[i] <= t2[j] { - ans = append(ans, t1[i]) - i++ - } else { - ans = append(ans, t2[j]) - j++ - } - } - for i < len(t1) { - ans = append(ans, t1[i]) + a, b := []int{}, []int{} + dfs(root1, &a) + dfs(root2, &b) + i, j := 0, 0 + m, n := len(a), len(b) + for i < m && j < n { + if a[i] < b[j] { + ans = append(ans, a[i]) i++ - } - for j < len(t2) { - ans = append(ans, t2[j]) + } else { + ans = append(ans, b[j]) j++ } - return ans } - t1, t2 := dfs(root1), dfs(root2) - return merge(t1, t2) + for ; i < m; i++ { + ans = append(ans, a[i]) + } + for ; j < n; j++ { + ans = append(ans, b[j]) + } + return } ``` @@ -277,31 +276,35 @@ func getAllElements(root1 *TreeNode, root2 *TreeNode) []int { */ function getAllElements(root1: TreeNode | null, root2: TreeNode | null): number[] { - const res = []; - const stacks = [[], []]; - while (root1 != null || stacks[0].length !== 0 || root2 != null || stacks[1].length !== 0) { - if (root1 != null) { - stacks[0].push(root1); - root1 = root1.left; - } else if (root2 != null) { - stacks[1].push(root2); - root2 = root2.left; + const dfs = (root: TreeNode | null, nums: number[]) => { + if (!root) { + return; + } + dfs(root.left, nums); + nums.push(root.val); + dfs(root.right, nums); + }; + const a: number[] = []; + const b: number[] = []; + dfs(root1, a); + dfs(root2, b); + const [m, n] = [a.length, b.length]; + const ans: number[] = []; + let [i, j] = [0, 0]; + while (i < m && j < n) { + if (a[i] < b[j]) { + ans.push(a[i++]); } else { - if ( - (stacks[0][stacks[0].length - 1] ?? { val: Infinity }).val < - (stacks[1][stacks[1].length - 1] ?? { val: Infinity }).val - ) { - const { val, right } = stacks[0].pop(); - res.push(val); - root1 = right; - } else { - const { val, right } = stacks[1].pop(); - res.push(val); - root2 = right; - } + ans.push(b[j++]); } } - return res; + while (i < m) { + ans.push(a[i++]); + } + while (j < n) { + ans.push(b[j++]); + } + return ans; } ``` @@ -333,41 +336,46 @@ impl Solution { root1: Option>>, root2: Option>>, ) -> Vec { - fn dfs(root: &Option>>, t: &mut Vec) { - if let Some(root) = root { - dfs(&root.borrow().left, t); - t.push(root.borrow().val); - dfs(&root.borrow().right, t); - } - } + let mut a = Vec::new(); + let mut b = Vec::new(); - let mut t1 = Vec::new(); - let mut t2 = Vec::new(); - dfs(&root1, &mut t1); - dfs(&root2, &mut t2); + Solution::dfs(&root1, &mut a); + Solution::dfs(&root2, &mut b); let mut ans = Vec::new(); - let mut i = 0; - let mut j = 0; - while i < t1.len() && j < t2.len() { - if t1[i] < t2[j] { - ans.push(t1[i]); + let (mut i, mut j) = (0, 0); + + while i < a.len() && j < b.len() { + if a[i] <= b[j] { + ans.push(a[i]); i += 1; } else { - ans.push(t2[j]); + ans.push(b[j]); j += 1; } } - while i < t1.len() { - ans.push(t1[i]); + + while i < a.len() { + ans.push(a[i]); i += 1; } - while j < t2.len() { - ans.push(t2[j]); + + while j < b.len() { + ans.push(b[j]); j += 1; } + ans } + + fn dfs(root: &Option>>, nums: &mut Vec) { + if let Some(node) = root { + let node = node.borrow(); + Solution::dfs(&node.left, nums); + nums.push(node.val); + Solution::dfs(&node.right, nums); + } + } } ``` diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README_EN.md b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README_EN.md index 1845ec9ae494a..740225f42aaaa 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README_EN.md +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/README_EN.md @@ -53,7 +53,11 @@ tags: -### Solution 1 +### Solution 1: DFS + Merge + +Since both trees are binary search trees, we can obtain the node value sequences $\textit{a}$ and $\textit{b}$ of the two trees through in-order traversal. Then, we use two pointers to merge the two sorted arrays to get the final answer. + +The time complexity is $O(n+m)$, and the space complexity is $O(n+m)$. Here, $n$ and $m$ are the number of nodes in the two trees, respectively. @@ -67,36 +71,36 @@ tags: # self.left = left # self.right = right class Solution: - def getAllElements(self, root1: TreeNode, root2: TreeNode) -> List[int]: - def dfs(root, t): + def getAllElements( + self, root1: Optional[TreeNode], root2: Optional[TreeNode] + ) -> List[int]: + def dfs(root: Optional[TreeNode], nums: List[int]) -> int: if root is None: return - dfs(root.left, t) - t.append(root.val) - dfs(root.right, t) - - def merge(t1, t2): - ans = [] - i = j = 0 - while i < len(t1) and j < len(t2): - if t1[i] <= t2[j]: - ans.append(t1[i]) - i += 1 - else: - ans.append(t2[j]) - j += 1 - while i < len(t1): - ans.append(t1[i]) + dfs(root.left, nums) + nums.append(root.val) + dfs(root.right, nums) + + a, b = [], [] + dfs(root1, a) + dfs(root2, b) + m, n = len(a), len(b) + i = j = 0 + ans = [] + while i < m and j < n: + if a[i] <= b[j]: + ans.append(a[i]) i += 1 - while j < len(t2): - ans.append(t2[j]) + else: + ans.append(b[j]) j += 1 - return ans - - t1, t2 = [], [] - dfs(root1, t1) - dfs(root2, t2) - return merge(t1, t2) + while i < m: + ans.append(a[i]) + i += 1 + while j < n: + ans.append(b[j]) + j += 1 + return ans ``` #### Java @@ -119,40 +123,37 @@ class Solution: */ class Solution { public List getAllElements(TreeNode root1, TreeNode root2) { - List t1 = new ArrayList<>(); - List t2 = new ArrayList<>(); - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } - - private void dfs(TreeNode root, List t) { - if (root == null) { - return; - } - dfs(root.left, t); - t.add(root.val); - dfs(root.right, t); - } - - private List merge(List t1, List t2) { - List ans = new ArrayList<>(); + List a = new ArrayList<>(); + List b = new ArrayList<>(); + dfs(root1, a); + dfs(root2, b); + int m = a.size(), n = b.size(); int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1.get(i) <= t2.get(j)) { - ans.add(t1.get(i++)); + List ans = new ArrayList<>(); + while (i < m && j < n) { + if (a.get(i) <= b.get(j)) { + ans.add(a.get(i++)); } else { - ans.add(t2.get(j++)); + ans.add(b.get(j++)); } } - while (i < t1.size()) { - ans.add(t1.get(i++)); + while (i < m) { + ans.add(a.get(i++)); } - while (j < t2.size()) { - ans.add(t2.get(j++)); + while (j < n) { + ans.add(b.get(j++)); } return ans; } + + private void dfs(TreeNode root, List nums) { + if (root == null) { + return; + } + dfs(root.left, nums); + nums.add(root.val); + dfs(root.right, nums); + } } ``` @@ -173,33 +174,36 @@ class Solution { class Solution { public: vector getAllElements(TreeNode* root1, TreeNode* root2) { - vector t1; - vector t2; - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } + vector a, b, ans; + dfs(root1, a); + dfs(root2, b); - void dfs(TreeNode* root, vector& t) { - if (!root) return; - dfs(root->left, t); - t.push_back(root->val); - dfs(root->right, t); - } - - vector merge(vector& t1, vector& t2) { - vector ans; int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1[i] <= t2[j]) - ans.push_back(t1[i++]); - else - ans.push_back(t2[j++]); + while (i < a.size() && j < b.size()) { + if (a[i] <= b[j]) { + ans.push_back(a[i++]); + } else { + ans.push_back(b[j++]); + } + } + while (i < a.size()) { + ans.push_back(a[i++]); + } + while (j < b.size()) { + ans.push_back(b[j++]); } - while (i < t1.size()) ans.push_back(t1[i++]); - while (j < t2.size()) ans.push_back(t2[j++]); return ans; } + +private: + void dfs(TreeNode* root, vector& nums) { + if (root == nullptr) { + return; + } + dfs(root->left, nums); + nums.push_back(root->val); + dfs(root->right, nums); + } }; ``` @@ -214,42 +218,37 @@ public: * Right *TreeNode * } */ -func getAllElements(root1 *TreeNode, root2 *TreeNode) []int { - var dfs func(root *TreeNode) []int - dfs = func(root *TreeNode) []int { +func getAllElements(root1 *TreeNode, root2 *TreeNode) (ans []int) { + var dfs func(*TreeNode, *[]int) + dfs = func(root *TreeNode, nums *[]int) { if root == nil { - return []int{} + return } - left := dfs(root.Left) - right := dfs(root.Right) - left = append(left, root.Val) - left = append(left, right...) - return left + dfs(root.Left, nums) + *nums = append(*nums, root.Val) + dfs(root.Right, nums) } - merge := func(t1, t2 []int) []int { - var ans []int - i, j := 0, 0 - for i < len(t1) && j < len(t2) { - if t1[i] <= t2[j] { - ans = append(ans, t1[i]) - i++ - } else { - ans = append(ans, t2[j]) - j++ - } - } - for i < len(t1) { - ans = append(ans, t1[i]) + a, b := []int{}, []int{} + dfs(root1, &a) + dfs(root2, &b) + i, j := 0, 0 + m, n := len(a), len(b) + for i < m && j < n { + if a[i] < b[j] { + ans = append(ans, a[i]) i++ - } - for j < len(t2) { - ans = append(ans, t2[j]) + } else { + ans = append(ans, b[j]) j++ } - return ans } - t1, t2 := dfs(root1), dfs(root2) - return merge(t1, t2) + for ; i < m; i++ { + ans = append(ans, a[i]) + } + for ; j < n; j++ { + ans = append(ans, b[j]) + } + return } ``` @@ -271,31 +270,35 @@ func getAllElements(root1 *TreeNode, root2 *TreeNode) []int { */ function getAllElements(root1: TreeNode | null, root2: TreeNode | null): number[] { - const res = []; - const stacks = [[], []]; - while (root1 != null || stacks[0].length !== 0 || root2 != null || stacks[1].length !== 0) { - if (root1 != null) { - stacks[0].push(root1); - root1 = root1.left; - } else if (root2 != null) { - stacks[1].push(root2); - root2 = root2.left; + const dfs = (root: TreeNode | null, nums: number[]) => { + if (!root) { + return; + } + dfs(root.left, nums); + nums.push(root.val); + dfs(root.right, nums); + }; + const a: number[] = []; + const b: number[] = []; + dfs(root1, a); + dfs(root2, b); + const [m, n] = [a.length, b.length]; + const ans: number[] = []; + let [i, j] = [0, 0]; + while (i < m && j < n) { + if (a[i] < b[j]) { + ans.push(a[i++]); } else { - if ( - (stacks[0][stacks[0].length - 1] ?? { val: Infinity }).val < - (stacks[1][stacks[1].length - 1] ?? { val: Infinity }).val - ) { - const { val, right } = stacks[0].pop(); - res.push(val); - root1 = right; - } else { - const { val, right } = stacks[1].pop(); - res.push(val); - root2 = right; - } + ans.push(b[j++]); } } - return res; + while (i < m) { + ans.push(a[i++]); + } + while (j < n) { + ans.push(b[j++]); + } + return ans; } ``` @@ -327,41 +330,46 @@ impl Solution { root1: Option>>, root2: Option>>, ) -> Vec { - fn dfs(root: &Option>>, t: &mut Vec) { - if let Some(root) = root { - dfs(&root.borrow().left, t); - t.push(root.borrow().val); - dfs(&root.borrow().right, t); - } - } + let mut a = Vec::new(); + let mut b = Vec::new(); - let mut t1 = Vec::new(); - let mut t2 = Vec::new(); - dfs(&root1, &mut t1); - dfs(&root2, &mut t2); + Solution::dfs(&root1, &mut a); + Solution::dfs(&root2, &mut b); let mut ans = Vec::new(); - let mut i = 0; - let mut j = 0; - while i < t1.len() && j < t2.len() { - if t1[i] < t2[j] { - ans.push(t1[i]); + let (mut i, mut j) = (0, 0); + + while i < a.len() && j < b.len() { + if a[i] <= b[j] { + ans.push(a[i]); i += 1; } else { - ans.push(t2[j]); + ans.push(b[j]); j += 1; } } - while i < t1.len() { - ans.push(t1[i]); + + while i < a.len() { + ans.push(a[i]); i += 1; } - while j < t2.len() { - ans.push(t2[j]); + + while j < b.len() { + ans.push(b[j]); j += 1; } + ans } + + fn dfs(root: &Option>>, nums: &mut Vec) { + if let Some(node) = root { + let node = node.borrow(); + Solution::dfs(&node.left, nums); + nums.push(node.val); + Solution::dfs(&node.right, nums); + } + } } ``` diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.cpp b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.cpp index b650806cc4d61..15b4b8cc4e504 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.cpp +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.cpp @@ -12,31 +12,34 @@ class Solution { public: vector getAllElements(TreeNode* root1, TreeNode* root2) { - vector t1; - vector t2; - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } - - void dfs(TreeNode* root, vector& t) { - if (!root) return; - dfs(root->left, t); - t.push_back(root->val); - dfs(root->right, t); - } + vector a, b, ans; + dfs(root1, a); + dfs(root2, b); - vector merge(vector& t1, vector& t2) { - vector ans; int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1[i] <= t2[j]) - ans.push_back(t1[i++]); - else - ans.push_back(t2[j++]); + while (i < a.size() && j < b.size()) { + if (a[i] <= b[j]) { + ans.push_back(a[i++]); + } else { + ans.push_back(b[j++]); + } + } + while (i < a.size()) { + ans.push_back(a[i++]); + } + while (j < b.size()) { + ans.push_back(b[j++]); } - while (i < t1.size()) ans.push_back(t1[i++]); - while (j < t2.size()) ans.push_back(t2[j++]); return ans; } -}; \ No newline at end of file + +private: + void dfs(TreeNode* root, vector& nums) { + if (root == nullptr) { + return; + } + dfs(root->left, nums); + nums.push_back(root->val); + dfs(root->right, nums); + } +}; diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.go b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.go index 925897b8f1114..4607229d66546 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.go +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.go @@ -6,40 +6,35 @@ * Right *TreeNode * } */ -func getAllElements(root1 *TreeNode, root2 *TreeNode) []int { - var dfs func(root *TreeNode) []int - dfs = func(root *TreeNode) []int { +func getAllElements(root1 *TreeNode, root2 *TreeNode) (ans []int) { + var dfs func(*TreeNode, *[]int) + dfs = func(root *TreeNode, nums *[]int) { if root == nil { - return []int{} + return } - left := dfs(root.Left) - right := dfs(root.Right) - left = append(left, root.Val) - left = append(left, right...) - return left + dfs(root.Left, nums) + *nums = append(*nums, root.Val) + dfs(root.Right, nums) } - merge := func(t1, t2 []int) []int { - var ans []int - i, j := 0, 0 - for i < len(t1) && j < len(t2) { - if t1[i] <= t2[j] { - ans = append(ans, t1[i]) - i++ - } else { - ans = append(ans, t2[j]) - j++ - } - } - for i < len(t1) { - ans = append(ans, t1[i]) + a, b := []int{}, []int{} + dfs(root1, &a) + dfs(root2, &b) + i, j := 0, 0 + m, n := len(a), len(b) + for i < m && j < n { + if a[i] < b[j] { + ans = append(ans, a[i]) i++ - } - for j < len(t2) { - ans = append(ans, t2[j]) + } else { + ans = append(ans, b[j]) j++ } - return ans } - t1, t2 := dfs(root1), dfs(root2) - return merge(t1, t2) -} \ No newline at end of file + for ; i < m; i++ { + ans = append(ans, a[i]) + } + for ; j < n; j++ { + ans = append(ans, b[j]) + } + return +} diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.java b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.java index 24e0adf1d3068..d44b196176974 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.java +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.java @@ -15,38 +15,35 @@ */ class Solution { public List getAllElements(TreeNode root1, TreeNode root2) { - List t1 = new ArrayList<>(); - List t2 = new ArrayList<>(); - dfs(root1, t1); - dfs(root2, t2); - return merge(t1, t2); - } - - private void dfs(TreeNode root, List t) { - if (root == null) { - return; - } - dfs(root.left, t); - t.add(root.val); - dfs(root.right, t); - } - - private List merge(List t1, List t2) { - List ans = new ArrayList<>(); + List a = new ArrayList<>(); + List b = new ArrayList<>(); + dfs(root1, a); + dfs(root2, b); + int m = a.size(), n = b.size(); int i = 0, j = 0; - while (i < t1.size() && j < t2.size()) { - if (t1.get(i) <= t2.get(j)) { - ans.add(t1.get(i++)); + List ans = new ArrayList<>(); + while (i < m && j < n) { + if (a.get(i) <= b.get(j)) { + ans.add(a.get(i++)); } else { - ans.add(t2.get(j++)); + ans.add(b.get(j++)); } } - while (i < t1.size()) { - ans.add(t1.get(i++)); + while (i < m) { + ans.add(a.get(i++)); } - while (j < t2.size()) { - ans.add(t2.get(j++)); + while (j < n) { + ans.add(b.get(j++)); } return ans; } -} \ No newline at end of file + + private void dfs(TreeNode root, List nums) { + if (root == null) { + return; + } + dfs(root.left, nums); + nums.add(root.val); + dfs(root.right, nums); + } +} diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.py b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.py index 04ead2ff754e8..50968e7da0426 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.py +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.py @@ -5,33 +5,33 @@ # self.left = left # self.right = right class Solution: - def getAllElements(self, root1: TreeNode, root2: TreeNode) -> List[int]: - def dfs(root, t): + def getAllElements( + self, root1: Optional[TreeNode], root2: Optional[TreeNode] + ) -> List[int]: + def dfs(root: Optional[TreeNode], nums: List[int]) -> int: if root is None: return - dfs(root.left, t) - t.append(root.val) - dfs(root.right, t) + dfs(root.left, nums) + nums.append(root.val) + dfs(root.right, nums) - def merge(t1, t2): - ans = [] - i = j = 0 - while i < len(t1) and j < len(t2): - if t1[i] <= t2[j]: - ans.append(t1[i]) - i += 1 - else: - ans.append(t2[j]) - j += 1 - while i < len(t1): - ans.append(t1[i]) + a, b = [], [] + dfs(root1, a) + dfs(root2, b) + m, n = len(a), len(b) + i = j = 0 + ans = [] + while i < m and j < n: + if a[i] <= b[j]: + ans.append(a[i]) i += 1 - while j < len(t2): - ans.append(t2[j]) + else: + ans.append(b[j]) j += 1 - return ans - - t1, t2 = [], [] - dfs(root1, t1) - dfs(root2, t2) - return merge(t1, t2) + while i < m: + ans.append(a[i]) + i += 1 + while j < n: + ans.append(b[j]) + j += 1 + return ans diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.rs b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.rs index b25f1d910e43c..808879d77cd2e 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.rs +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.rs @@ -23,39 +23,44 @@ impl Solution { root1: Option>>, root2: Option>>, ) -> Vec { - fn dfs(root: &Option>>, t: &mut Vec) { - if let Some(root) = root { - dfs(&root.borrow().left, t); - t.push(root.borrow().val); - dfs(&root.borrow().right, t); - } - } + let mut a = Vec::new(); + let mut b = Vec::new(); - let mut t1 = Vec::new(); - let mut t2 = Vec::new(); - dfs(&root1, &mut t1); - dfs(&root2, &mut t2); + Solution::dfs(&root1, &mut a); + Solution::dfs(&root2, &mut b); let mut ans = Vec::new(); - let mut i = 0; - let mut j = 0; - while i < t1.len() && j < t2.len() { - if t1[i] < t2[j] { - ans.push(t1[i]); + let (mut i, mut j) = (0, 0); + + while i < a.len() && j < b.len() { + if a[i] <= b[j] { + ans.push(a[i]); i += 1; } else { - ans.push(t2[j]); + ans.push(b[j]); j += 1; } } - while i < t1.len() { - ans.push(t1[i]); + + while i < a.len() { + ans.push(a[i]); i += 1; } - while j < t2.len() { - ans.push(t2[j]); + + while j < b.len() { + ans.push(b[j]); j += 1; } + ans } + + fn dfs(root: &Option>>, nums: &mut Vec) { + if let Some(node) = root { + let node = node.borrow(); + Solution::dfs(&node.left, nums); + nums.push(node.val); + Solution::dfs(&node.right, nums); + } + } } diff --git a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.ts b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.ts index f8005900ec2c0..a6e6c75fc999c 100644 --- a/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.ts +++ b/solution/1300-1399/1305.All Elements in Two Binary Search Trees/Solution.ts @@ -13,29 +13,33 @@ */ function getAllElements(root1: TreeNode | null, root2: TreeNode | null): number[] { - const res = []; - const stacks = [[], []]; - while (root1 != null || stacks[0].length !== 0 || root2 != null || stacks[1].length !== 0) { - if (root1 != null) { - stacks[0].push(root1); - root1 = root1.left; - } else if (root2 != null) { - stacks[1].push(root2); - root2 = root2.left; + const dfs = (root: TreeNode | null, nums: number[]) => { + if (!root) { + return; + } + dfs(root.left, nums); + nums.push(root.val); + dfs(root.right, nums); + }; + const a: number[] = []; + const b: number[] = []; + dfs(root1, a); + dfs(root2, b); + const [m, n] = [a.length, b.length]; + const ans: number[] = []; + let [i, j] = [0, 0]; + while (i < m && j < n) { + if (a[i] < b[j]) { + ans.push(a[i++]); } else { - if ( - (stacks[0][stacks[0].length - 1] ?? { val: Infinity }).val < - (stacks[1][stacks[1].length - 1] ?? { val: Infinity }).val - ) { - const { val, right } = stacks[0].pop(); - res.push(val); - root1 = right; - } else { - const { val, right } = stacks[1].pop(); - res.push(val); - root2 = right; - } + ans.push(b[j++]); } } - return res; + while (i < m) { + ans.push(a[i++]); + } + while (j < n) { + ans.push(b[j++]); + } + return ans; }