|
| 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 | +} |
0 commit comments