MaxHeap.h 148 B

12345678
  1. #ifndef _MAX_HEAP_H_
  2. #define _MAX_HEAP_H_
  3. #include "types.h"
  4. void maxHeap_insert(MaxHeap * heap, const pyWord id, const pyReal distance);
  5. #endif