Heap sorting algorithm use special type of balanced binary tree to sort data, which is known as heap. Heap sort first organize data in sorted binary tree format, then create the sorted list from the heap. Special properties of heap sort, make it useful in low memory system.
Click here for Heap sort in Java
Comments
Post a Comment