/**
* #[derive(PartialEq, Eq, Debug, Clone)]
* pub struct TreeNode {
* pub val: i32,
* pub left: Option<Box<TreeNode>>,
* pub right: Option<Box<TreeNode>>,
* }
*
* impl TreeNode {
* #[inline]
* fn new(val: i32) -> Self {
* TreeNode {
* val: val,
* left: None,
* right: None,
* }
* }
* }
*/
struct Solution{
}
impl Solution {
fn new() -> Self {
Solution{
}
}
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型一维数组
*/
pub fn preorderTraversal(&self, root: Option<Box<TreeNode>>) -> Vec<i32> {
// write code here
let mut ans = vec![];
Solution::dfs(self, root.clone(), &mut ans);
return ans;
}
fn dfs(&self, node: Option<Box<TreeNode>>, arr: &mut Vec<i32>) {
if node.is_none() == false {
arr.push(node.as_ref().unwrap().val);
Solution::dfs(self, node.as_ref().unwrap().left.clone(), arr);
Solution::dfs(self, node.as_ref().unwrap().right.clone(), arr);
}
}
}