Documentation>C API
heap-def.h File Reference

Heap preprocessor metaprogram. More...

#include "host.h"
#include <assert.h>

Macros

#define VL_HEAP_array   VL_HEAP_type*
 
#define VL_HEAP_prefix   HeapObject
 
#define VL_HEAP_type   HeapType
 
#define VL_HEAP_array   HeapType*
 
#define VL_HEAP_array   HeapType const*
 

Functions

vl_uindex vl_heap_parent (vl_uindex index)
 Get index of parent node. More...
 
vl_uindex vl_heap_left_child (vl_uindex index)
 Get index of left child. More...
 
vl_uindex vl_heap_right_child (vl_uindex index)
 Get index of right child. More...
 
VL_HEAP_type VL_HEAP_cmp (VL_HEAP_array_const array, vl_uindex indexA, vl_uindex indexB)
 Compare two heap elements. More...
 
void VL_HEAP_swap (VL_HEAP_array array, vl_uindex indexA, vl_uindex indexB)
 Swap two heap elements. More...
 
void VL_HEAP_up (VL_HEAP_array array, vl_size heapSize, vl_uindex index)
 Heap up operation. More...
 
void VL_HEAP_down (VL_HEAP_array array, vl_uindex index)
 Heap down operation. More...
 
void VL_HEAP_push (VL_HEAP_array array, vl_size *heapSize)
 Heap push operation. More...
 
vl_uindex VL_HEAP_pop (VL_HEAP_array array, vl_size *heapSize)
 Heap pop operation. More...
 
void VL_HEAP_update (VL_HEAP_array array, vl_size heapSize, vl_uindex index)
 Heap update operation. More...
 

Detailed Description

Author
Andrea Vedaldi

A heap organizes an array of objects in a priority queue. This module is a template metaprogram that defines heap operations on array of generic objects, or even generic object containers.

Overview

To use heap-def.h one must specify at least a prefix and the data type for the heap elements:

#define VL_HEAP_prefix my_heap
#define VL_HEAP_type float
#include <vl/heap-def.h>

This code fragment defines a number of functions prefixed by VL_HEAP_prefix, such as my_heap_push (VL_HEAP_push) and my_heap_pop (VL_HEAP_pop), that implement the heap operations. These functions operate on an array that has type VL_HEAP_array. By default, this is defined to be:

#define VL_HEAP_array VL_HEAP_type*
#define VL_HEAP_array_const VL_HEAP_type const*

The array itself is accessed uniquely by means of two functions:

  • VL_HEAP_cmp, that compares two array elements. The default implementation assumes that VL_HEAP_type is numeric.
  • VL_HEAP_swap, that swaps two array elements. The default implementation assumes that VL_HEAP_type can be copied by the = operator.

The heap state is a integer numElements (of type vl_size) counting the number of elements of the array that are currently part of the heap and the content of the first numElements elements of the array. The portion of the array that constitutes the heap satisfies a certain invariant property (heap property, Technical details). From a user viewpoint, the most important consequence is that the first element of the array (the one of index 0) is also the smallest (according to VL_HEAP_cmp).

Elements are added to the heap by VL_HEAP_push and removed from the heap by VL_HEAP_pop. A push operation adds to the heap the array element immediately after the last element already in the heap (i.e. the element of index numElements) and increases the number of heap elements numElements. Elements in the heap are swapped as required in order to maintain the heap consistency. Similarly, a pop operation removes the first (smaller) element from the heap and decreases the number of heap elements numElements.

The values of nodes currently in the heap can be updated by VL_HEAP_update. Notice however that using this function requires knowing the index of the element that needs to be updated up to the swapping operations that the heap performs to maintain consistency. Typically, this requires redefining VL_HEAP_swap to keep track of such changes (General usage).

General usage

The heap container may be mapped to any type by reimplementing VL_HEAP_cmp and VL_HEAP_swap explicitly. For instance the following code redefines VL_HEAP_cmp to deal with the case in which the heap is an array of structures:

typedef struct _S { int x ; } S ;
int s_cmp (S const * v, vl_uindex a, vl_uindex b) {
return v[a].x - v[b].x ;
}
#define VL_HEAP_prefix s_heap
#define VL_HEAP_type S
#define VL_HEAP_cmp s_cmp
#include <vl/heap-def.h>

In the following example, the heap itself is an arbitrary structure:

typedef struct _H { int* array ; } H ;
int h_cmp (H const * h, vl_uindex a, vl_uindex b) {
return h->array[a] - h->array[b] ;
}
int h_swap (H * h, vl_uindex a, vl_uindex b) {
int t = h->array[a] ;
h->array[a] = h->array[b] ;
h->array[b] = t ;
}
#define VL_HEAP_prefix h_heap
#define VL_HEAP_swap h_swap
#define VL_HEAP_cmp h_cmp
#include <vl/heap-def.h>

Technical details

The heap is organised as a binary tree with the property (heap property) that any node is not larger than any of its children. In particular, the root is the smallest node.

heap-def.h uses the standard binary tree representation as a linear array. Tree nodes are mapped to array elements as follows: array[0] corresponds to the root, array[1] and array[2] to the root left and right children and so on. In this way, the tree structure is fully specified by the total number of nodes N.

Assuming that the heap has N nodes (from array[0] to array[N-1]), adding the node array[N] to the heap is done by a push down operation: if the node array[N] is smaller than its parent (violating the heap property) it is pushed down by swapping it with the parent, and so on recursively.

Removing the smallest element array[0] with an heap of N nodes is done by swapping array[0] with array[N-1]. If then array[0] is larger than any of its children, it is swapped with the smallest of the two and so on recursively (push up operation).

Restoring the heap property after an element array[i] has been modified can be done by a push up or push down operation on that node.

Macro Definition Documentation

◆ VL_HEAP_array [1/3]

#define VL_HEAP_array   VL_HEAP_type*

Data type of the heap container

Const data type of the heap container

◆ VL_HEAP_array [2/3]

#define VL_HEAP_array   HeapType*

Data type of the heap container

Const data type of the heap container

◆ VL_HEAP_array [3/3]

#define VL_HEAP_array   HeapType const*

Data type of the heap container

Const data type of the heap container

◆ VL_HEAP_prefix

#define VL_HEAP_prefix   HeapObject

Prefix of the heap functions

◆ VL_HEAP_type

#define VL_HEAP_type   HeapType

Data type of the heap elements

Function Documentation

◆ VL_HEAP_cmp()

VL_HEAP_type VL_HEAP_cmp ( VL_HEAP_array_const  array,
vl_uindex  indexA,
vl_uindex  indexB 
)
inline
Parameters
arrayheap array.
indexAindex of the first element A to compare.
indexBindex of the second element B to comapre.
Returns
a negative number if A<B, 0 if A==B, and a positive number if if A>B.

◆ VL_HEAP_down()

void VL_HEAP_down ( VL_HEAP_array  array,
vl_uindex  index 
)
inline
Parameters
arraypointer to the heap node array.
indexindex of the node to push up.

◆ vl_heap_left_child()

vl_uindex vl_heap_left_child ( vl_uindex  index)
inline
Parameters
indexa node index.
Returns
index of the left child.

◆ vl_heap_parent()

vl_uindex vl_heap_parent ( vl_uindex  index)
inline
Parameters
indexa node index.
Returns
index of the parent node.

◆ VL_HEAP_pop()

vl_uindex VL_HEAP_pop ( VL_HEAP_array  array,
vl_size heapSize 
)
inline
Parameters
arraypointer to the heap array.
heapSize(in/out) size of the heap.
Returns
index of the popped element.

The function extracts from the heap the element of index 0 (the smallest element) and decreases heapSize.

The element extracted is moved as the first element after the heap end (thus it has index heapSize). For convenience, this index is returned by the function.

Popping from an empty heap is undefined.

◆ VL_HEAP_push()

void VL_HEAP_push ( VL_HEAP_array  array,
vl_size heapSize 
)
inline
Parameters
arraypointer to the heap array.
heapSize(in/out) size of the heap.

The function adds to the heap the element of index heapSize and increments heapSize.

◆ vl_heap_right_child()

vl_uindex vl_heap_right_child ( vl_uindex  index)
inline
Parameters
indexa node index.
Returns
index of the right child.

◆ VL_HEAP_swap()

void VL_HEAP_swap ( VL_HEAP_array  array,
vl_uindex  indexA,
vl_uindex  indexB 
)
inline
Parameters
arrayarray of nodes.
arrayheap array.
indexAindex of the first node to swap.
indexBindex of the second node to swap.

The function swaps the two heap elements a and @ b. The function uses a temporary element and the copy operator, which must be well defined for the heap elements.

◆ VL_HEAP_up()

void VL_HEAP_up ( VL_HEAP_array  array,
vl_size  heapSize,
vl_uindex  index 
)
inline
Parameters
arraypointer to the heap array.
heapSizesize of the heap.
indexindex of the node to push up.

◆ VL_HEAP_update()

void VL_HEAP_update ( VL_HEAP_array  array,
vl_size  heapSize,
vl_uindex  index 
)
inline
Parameters
arraypointer to the heap array.
heapSizesize of the heap.
indexindex of the node to update.

The function updates the heap to account for a change to the element of index index in the heap.

Notice that using this function requires knowing the index of the heap index of element that was changed. Since the heap swaps elements in the array, this is in general different from the index that that element had originally.