indra-kc / DSA

A collection of essential Data Structures and Algorithms implemented in Python.
0 stars 5 forks source link

Heap Sort #47

Closed ShoomanKhatri closed 1 month ago

ShoomanKhatri commented 1 month ago

Problem: Build a max heap and repeatedly extract the largest element to sort the array. Usage: Good for sorting large datasets; in-place but not stable.

ShoomanKhatri commented 1 month ago

plz assign this to me.

ShoomanKhatri commented 1 month ago

completed