-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#16: add solution for exercise #116 in rust
- Loading branch information
1 parent
35cd8c1
commit 0327a9b
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
rust/trees/0116-populating-next-right-pointers-in-each-node.rs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// As of this publishing, Leetcode has not implemented this | ||
// problem for rust - definitions may differ | ||
// Definition for a binary tree node. | ||
#[derive(Debug, PartialEq, Eq)] | ||
pub struct TreeNode { | ||
pub val: i32, | ||
pub left: Option<Rc<RefCell<TreeNode>>>, | ||
pub right: Option<Rc<RefCell<TreeNode>>>, | ||
pub next: Option<Rc<RefCell<TreeNode>>>, | ||
} | ||
|
||
impl TreeNode { | ||
#[inline] | ||
pub fn new(val: i32) -> Self { | ||
TreeNode { | ||
val, | ||
left: None, | ||
right: None, | ||
next: None | ||
} | ||
} | ||
} | ||
|
||
pub struct Solution(); | ||
|
||
use std::rc::Rc; | ||
use std::cell::RefCell; | ||
impl Solution { | ||
pub fn connect(root: Option<Rc<RefCell<TreeNode>>>) -> Option<Rc<RefCell<TreeNode>>> { | ||
let mut node = root.clone(); | ||
while node.is_some() { | ||
let mut cur = node.clone(); | ||
while let Some(parent) = cur { | ||
let parent = parent.borrow(); | ||
if parent.left.is_none() {break}; | ||
|
||
let left = parent.left.clone().unwrap(); | ||
let mut left = left.borrow_mut(); | ||
left.next = parent.right.clone(); | ||
if let Some(nx) = parent.next.clone() { | ||
let nx = nx.borrow(); | ||
|
||
let right = parent.right.clone().unwrap(); | ||
let mut right = right.borrow_mut(); | ||
right.next = nx.left.clone(); | ||
} | ||
|
||
cur = parent.next.clone(); | ||
} | ||
|
||
let n = node.unwrap(); | ||
node = n.borrow().left.clone(); | ||
} | ||
|
||
root | ||
} | ||
} | ||
|
||
fn main() { | ||
let mut rt = TreeNode::new(1); | ||
|
||
let mut l = TreeNode::new(2); | ||
let mut ll = TreeNode::new(4); | ||
let mut lr = TreeNode::new(5); | ||
|
||
let mut r = TreeNode::new(3); | ||
let mut rl = TreeNode::new(6); | ||
let mut rr = TreeNode::new(7); | ||
|
||
r.left = Some(Rc::new(RefCell::new(rl))); | ||
r.right = Some(Rc::new(RefCell::new(rr))); | ||
|
||
l.left = Some(Rc::new(RefCell::new(ll))); | ||
l.right = Some(Rc::new(RefCell::new(lr))); | ||
|
||
rt.left = Some(Rc::new(RefCell::new(l))); | ||
rt.right = Some(Rc::new(RefCell::new(r))); | ||
|
||
let rt = Some(Rc::new(RefCell::new(rt))); | ||
println!("{:#?}", rt.clone()); | ||
Solution::connect(rt.clone()); | ||
println!("{:#?}", rt.clone()); | ||
} |