Skip to content

Instantly share code, notes, and snippets.

@arjunsk
Created May 6, 2022 05:21
Show Gist options
  • Save arjunsk/aba6e3667bed9078f5693671cd3d12b2 to your computer and use it in GitHub Desktop.
Save arjunsk/aba6e3667bed9078f5693671cd3d12b2 to your computer and use it in GitHub Desktop.
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