mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-02 10:34:35 +00:00
2778a6f9c7
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
57 lines
1.7 KiB
Rust
57 lines
1.7 KiB
Rust
/*
|
|
* File: build_tree.rs
|
|
* Created Time: 2023-07-15
|
|
* Author: codingonion (coderonion@gmail.com)
|
|
*/
|
|
|
|
use hello_algo_rust::include::{print_util, TreeNode};
|
|
use std::collections::HashMap;
|
|
use std::{cell::RefCell, rc::Rc};
|
|
|
|
/* Build binary tree: divide and conquer */
|
|
fn dfs(
|
|
preorder: &[i32],
|
|
inorder_map: &HashMap<i32, i32>,
|
|
i: i32,
|
|
l: i32,
|
|
r: i32,
|
|
) -> Option<Rc<RefCell<TreeNode>>> {
|
|
// Terminate when the subtree interval is empty
|
|
if r - l < 0 {
|
|
return None;
|
|
}
|
|
// Initialize the root node
|
|
let root = TreeNode::new(preorder[i as usize]);
|
|
// Query m to divide the left and right subtrees
|
|
let m = inorder_map.get(&preorder[i as usize]).unwrap();
|
|
// Subproblem: build the left subtree
|
|
root.borrow_mut().left = dfs(preorder, inorder_map, i + 1, l, m - 1);
|
|
// Subproblem: build the right subtree
|
|
root.borrow_mut().right = dfs(preorder, inorder_map, i + 1 + m - l, m + 1, r);
|
|
// Return the root node
|
|
Some(root)
|
|
}
|
|
|
|
/* Build binary tree */
|
|
fn build_tree(preorder: &[i32], inorder: &[i32]) -> Option<Rc<RefCell<TreeNode>>> {
|
|
// Initialize hash map, storing the mapping from inorder elements to indices
|
|
let mut inorder_map: HashMap<i32, i32> = HashMap::new();
|
|
for i in 0..inorder.len() {
|
|
inorder_map.insert(inorder[i], i as i32);
|
|
}
|
|
let root = dfs(preorder, &inorder_map, 0, 0, inorder.len() as i32 - 1);
|
|
root
|
|
}
|
|
|
|
/* Driver Code */
|
|
fn main() {
|
|
let preorder = [3, 9, 2, 1, 7];
|
|
let inorder = [9, 3, 1, 2, 7];
|
|
println!("In-order traversal = {:?}", preorder);
|
|
println!("Pre-order traversal = {:?}", inorder);
|
|
|
|
let root = build_tree(&preorder, &inorder);
|
|
println!("The constructed binary tree is:");
|
|
print_util::print_tree(root.as_ref().unwrap());
|
|
}
|