OpenCV  2.4.13.3
Open Source Computer Vision
cvflann::Heap< T > Class Template Reference

#include <heap.h>

Classes

struct  CompareT
 

Public Member Functions

 Heap (int sz)
 
int size ()
 
bool empty ()
 
void clear ()
 
void insert (T value)
 
bool popMin (T &value)
 

Detailed Description

template<typename T>
class cvflann::Heap< T >

Priority Queue Implementation

The priority queue is implemented with a heap. A heap is a complete (full) binary tree in which each parent is less than both of its children, but the order of the children is unspecified.

Constructor & Destructor Documentation

§ Heap()

template<typename T>
cvflann::Heap< T >::Heap ( int  sz)
inline

Constructor.

Params: sz = heap size

Member Function Documentation

§ clear()

template<typename T>
void cvflann::Heap< T >::clear ( )
inline

Clears the heap.

§ empty()

template<typename T>
bool cvflann::Heap< T >::empty ( )
inline

Tests if the heap is empty

Returns: true is heap empty, false otherwise

§ insert()

template<typename T>
void cvflann::Heap< T >::insert ( value)
inline

Insert a new element in the heap.

We select the next empty leaf node, and then keep moving any larger parents down until the right location is found to store this element.

Params: value = the new element to be inserted in the heap

§ popMin()

template<typename T>
bool cvflann::Heap< T >::popMin ( T &  value)
inline

Returns the node of minimum value from the heap (top of the heap).

Params: value = out parameter used to return the min element Returns: false if heap empty

§ size()

template<typename T>
int cvflann::Heap< T >::size ( )
inline

Returns: heap size


The documentation for this class was generated from the following file: