Created
May 6, 2022 05:21
-
-
Save arjunsk/aba6e3667bed9078f5693671cd3d12b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
use std::cell::RefCell; | |
impl Solution { | |
pub fn preorder_traversal(root: Option<Rc<RefCell<TreeNode>>>) -> Vec<i32> { | |
let mut result = vec![]; | |
fn helper(root: Option<Rc<RefCell<TreeNode>>>, result: &mut Vec<i32>) -> (){ | |
if let Some(curr) = root{ | |
let curr = curr.borrow(); | |
result.push(curr.val); | |
helper(curr.left.clone(),result); | |
helper(curr.right.clone(),result); | |
} | |
} | |
helper(root, &mut result); | |
return result; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment