1234567891011121314151617181920212223242526 |
- #ifndef INDEX_HEAP_H
- #define INDEX_HEAP_H
- #include "scalar.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- void heap_init(unsigned long long *h, unsigned long long hlen, scalar_t *s);
- void heap_get2max(unsigned long long *h, unsigned long long *max1, unsigned long long *max2, scalar_t *s);
- void heap_rootreplaced(unsigned long long *h, unsigned long long hlen, scalar_t *s);
- #ifdef __cplusplus
- }
- #endif
- #endif
|