Rust: RefCell, Rc

重点:怎么用Rc, RefCell; 自动解引的过程

代码

impl Solution {
   
    pub fn find_tilt(root: Option<Rc<RefCell<TreeNode>>>) -> i32 {
   
        let (_weight, tilt) = Solution::weight_tilt(&root);
        tilt
    }

    pub fn 

你可能感兴趣的:(blackberry)