Skip to content

Commit e8474e6

Browse files
committed
Chapter 8 finished
1 parent 9ec6e7e commit e8474e6

File tree

13 files changed

+612
-0
lines changed

13 files changed

+612
-0
lines changed

chapter_8/binary_tree/Cargo.lock

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chapter_8/binary_tree/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "binary_tree"
3+
version = "0.1.0"
4+
authors = ["Yohei Osawa <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
10+
input = {path = "../../library/input"}

chapter_8/binary_tree/input.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
9
2+
0 1 4
3+
1 2 3
4+
2 -1 -1
5+
3 -1 -1
6+
4 5 8
7+
5 6 7
8+
6 -1 -1
9+
7 -1 -1
10+
8 -1 -1

chapter_8/binary_tree/src/main.rs

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#[derive(Copy, Clone)]
2+
struct Node {
3+
parent_node: i32,
4+
left_child: i32,
5+
right_child: i32,
6+
}
7+
8+
impl Default for Node {
9+
fn default() -> Self {
10+
Node{
11+
parent_node: -1,
12+
left_child: -1,
13+
right_child: -1,
14+
}
15+
}
16+
}
17+
18+
fn calc_height(nodes: &[Node], node_index: usize) -> usize {
19+
let mut leht_hight = 0;
20+
let mut right_hight = 0;
21+
if nodes[node_index].left_child != -1 {
22+
leht_hight = calc_height(nodes, nodes[node_index].left_child as usize) + 1;
23+
}
24+
if nodes[node_index].right_child != -1 {
25+
right_hight = calc_height(nodes, nodes[node_index].right_child as usize) + 1;
26+
}
27+
std::cmp::max(leht_hight, right_hight)
28+
}
29+
30+
fn main() {
31+
let mut nodes: [Node; 20] = [Default::default(); 20];
32+
let node_num: usize = input::read_number();
33+
for _ in 0..node_num{
34+
let node_info: Vec<i32> = input::read_numline();
35+
let node_id = node_info[0];
36+
let left_child_id = node_info[1];
37+
let right_child_id = node_info[2];
38+
if left_child_id != -1 {
39+
nodes[node_id as usize].left_child = left_child_id;
40+
nodes[left_child_id as usize].parent_node = node_id;
41+
}
42+
if right_child_id != -1 {
43+
nodes[node_id as usize].right_child = right_child_id;
44+
nodes[right_child_id as usize].parent_node = node_id;
45+
}
46+
}
47+
let root_height = calc_height(&nodes, 0);
48+
println!("root height is {}", root_height);
49+
}

0 commit comments

Comments
 (0)