Skip to content

Commit 89d0702

Browse files
committed
Chapeter 10 finished
1 parent dc8a686 commit 89d0702

File tree

12 files changed

+200
-3
lines changed

12 files changed

+200
-3
lines changed

chapter_10/binary_heap/Cargo.lock

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

chapter_10/binary_heap/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "binary_heap"
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_10/binary_heap/src/main.rs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
fn main() {
3+
let heap_size: usize = input::read_number();
4+
let input_values: Vec<i32> = input::read_numline();
5+
let mut heap_vec: Vec<Option<i32>> = Vec::new();
6+
heap_vec.push(None);
7+
for i in 0..heap_size {
8+
let value: i32 = input_values[i];
9+
heap_vec.push(Some(value));
10+
}
11+
12+
for i in 1..heap_size+1{
13+
print!("node {}: ", i);
14+
print!("key = {}, ", heap_vec[i].unwrap());
15+
if i != 1 {
16+
print!("parent key = {}, ", heap_vec[i/2].unwrap());
17+
}
18+
if 2*i <= heap_size {
19+
print!("left key = {}, ", heap_vec[2*i].unwrap());
20+
}
21+
if 2*i+1 <= heap_size {
22+
print!("right key = {}, ", heap_vec[2*i+1].unwrap());
23+
}
24+
print!("\n");
25+
}
26+
}

chapter_10/max_heap/Cargo.lock

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

chapter_10/max_heap/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "max_heap"
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_10/max_heap/input.txt

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

chapter_10/max_heap/src/main.rs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
fn maxheapfy(index: usize, heap: &mut Vec<i32>){
2+
let mut largest_index = index;
3+
if index*2 <= heap.len() -1{
4+
if heap[index] < heap[index*2] {
5+
largest_index = index*2;
6+
}
7+
}
8+
if index*2+1 <= heap.len() -1{
9+
if heap[largest_index] < heap[index*2+1] {
10+
largest_index = index*2+1;
11+
}
12+
}
13+
if largest_index != index {
14+
heap.swap(index, largest_index);
15+
maxheapfy(largest_index, heap);
16+
}
17+
}
18+
19+
fn main() {
20+
let heap_size: usize = input::read_number();
21+
let input_values: Vec<i32> = input::read_numline();
22+
let mut heap_vec: Vec<i32> = Vec::new();
23+
heap_vec.push(0);
24+
for i in 0..heap_size{
25+
heap_vec.push(input_values[i]);
26+
}
27+
for i in (1..=heap_size/2).rev() {
28+
maxheapfy(i, &mut heap_vec);
29+
}
30+
for i in 1..=heap_size{
31+
print!("{}, ", heap_vec[i])
32+
}
33+
print!("\n");
34+
}

chapter_10/priority_queue/Cargo.lock

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

chapter_10/priority_queue/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "priority_queue"
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_10/priority_queue/input.txt

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

chapter_10/priority_queue/src/main.rs

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
fn maxheapfy(index: usize, heap: &mut Vec<i32>){
2+
let mut largest_index = index;
3+
if index*2 <= heap.len() -1{
4+
if heap[index] < heap[index*2] {
5+
largest_index = index*2;
6+
}
7+
}
8+
if index*2+1 <= heap.len() -1{
9+
if heap[largest_index] < heap[index*2+1] {
10+
largest_index = index*2+1;
11+
}
12+
}
13+
if largest_index != index {
14+
heap.swap(index, largest_index);
15+
maxheapfy(largest_index, heap);
16+
}
17+
}
18+
19+
fn order_insertion_key(index: usize, heap: &mut Vec<i32>) {
20+
if index <= 1{
21+
return;
22+
}
23+
while heap[index] > heap[index/2] && index > 1{
24+
heap.swap(index, index/2);
25+
}
26+
}
27+
28+
fn insert(key: i32, heap: &mut Vec<i32>) {
29+
heap.push(key);
30+
order_insertion_key(heap.len() -1, heap);
31+
}
32+
33+
fn extract(heap: &mut Vec<i32>) -> i32{
34+
let heaplen = heap.len() - 1;
35+
heap.swap(1, heaplen);
36+
let value = heap.pop().unwrap();
37+
maxheapfy(1, heap);
38+
value
39+
}
40+
41+
fn main() {
42+
let mut heap_vec: Vec<i32> = Vec::new();
43+
heap_vec.push(0);
44+
loop {
45+
let input_line: Vec<String> = input::read_numline();
46+
if input_line[0] == "insert" {
47+
insert(input_line[1].parse::<i32>().ok().unwrap(), &mut heap_vec);
48+
} else if input_line[0] == "extract" {
49+
let value = extract(&mut heap_vec);
50+
println!("value is {}", value);
51+
} else {
52+
break;
53+
}
54+
}
55+
}

chapter_9/binary_search/src/lib.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,16 @@ impl<T> BinaryTree<T> {
5050
fn locate_mut<K>(&mut self, key: &K) -> &mut Link<T> where T: Indexed<K>, K: Ord {
5151
let mut anchor = &mut self.root;
5252
loop {
53-
match anchor.as_ref() {
53+
match anchor {
54+
Some(n)if key == n.value.key() => {
55+
let node = anchor.as_mut().unwrap(); anchor = &mut node.left;
56+
}
5457
Some(n) if key != n.value.key() => {
55-
let node = anchor.as_mut().unwrap();
56-
anchor = if key < node.value.key() { &mut node.left } else { &mut node.right }
58+
// let node = anchor.as_mut().unwrap();
59+
anchor = if key < n.value.key() { &mut n.left } else { &mut n.right }
5760
}
61+
62+
5863
_ => return anchor,
5964
}
6065
}

0 commit comments

Comments
 (0)