Skip to content

tktajwar/heap-array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Heap Tree Data Structure

A heap tree (implemented in dynamic array) written in C!

It can be switched between min heap and max heap by modifying the header file

For Max heap:

#define HEAP_TYPE 1

For Min heap:

#define HEAP_TYPE 2

Example of a binary max-heap from wikipedia

Releases

No releases published

Packages

No packages published

Languages