mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-06 04:00:21 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
72 lines
2.0 KiB
Python
72 lines
2.0 KiB
Python
"""
|
|
File: heap.py
|
|
Created Time: 2023-02-23
|
|
Author: krahets (krahets@163.com)
|
|
"""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.append(str(Path(__file__).parent.parent))
|
|
from modules import print_heap
|
|
|
|
import heapq
|
|
|
|
|
|
def test_push(heap: list, val: int, flag: int = 1):
|
|
heapq.heappush(heap, flag * val) # Element enters heap
|
|
print(f"\nAfter element {val} enters heap")
|
|
print_heap([flag * val for val in heap])
|
|
|
|
|
|
def test_pop(heap: list, flag: int = 1):
|
|
val = flag * heapq.heappop(heap) # Top element exits heap
|
|
print(f"\nAfter top element {val} exits heap")
|
|
print_heap([flag * val for val in heap])
|
|
|
|
|
|
"""Driver Code"""
|
|
if __name__ == "__main__":
|
|
# Initialize min heap
|
|
min_heap, flag = [], 1
|
|
# Initialize max heap
|
|
max_heap, flag = [], -1
|
|
|
|
print("\nThe following test cases are for max heap")
|
|
# Python's heapq module implements min heap by default
|
|
# Consider negating the elements before entering the heap, which can reverse the size relationship, thus implementing max heap
|
|
# In this example, flag = 1 corresponds to min heap, flag = -1 corresponds to max heap
|
|
|
|
# Elements enter heap
|
|
test_push(max_heap, 1, flag)
|
|
test_push(max_heap, 3, flag)
|
|
test_push(max_heap, 2, flag)
|
|
test_push(max_heap, 5, flag)
|
|
test_push(max_heap, 4, flag)
|
|
|
|
# Get top element
|
|
peek: int = flag * max_heap[0]
|
|
print(f"\nTop element is {peek}")
|
|
|
|
# Top element exits heap
|
|
test_pop(max_heap, flag)
|
|
test_pop(max_heap, flag)
|
|
test_pop(max_heap, flag)
|
|
test_pop(max_heap, flag)
|
|
test_pop(max_heap, flag)
|
|
|
|
# Get heap size
|
|
size: int = len(max_heap)
|
|
print(f"\nNumber of heap elements is {size}")
|
|
|
|
# Check if heap is empty
|
|
is_empty: bool = not max_heap
|
|
print(f"\nIs heap empty {is_empty}")
|
|
|
|
# Input list and build heap
|
|
# Time complexity is O(n), not O(nlogn)
|
|
min_heap = [1, 3, 2, 5, 4]
|
|
heapq.heapify(min_heap)
|
|
print("\nAfter inputting list and building min heap")
|
|
print_heap(min_heap)
|