gSAFE
1.3.8
|
#include <speedypair.h>
Public Member Functions | |
HSpeedyPair (KEY kn, VALUE vn) | |
void | addPair (KEY k, VALUE v) |
void | clear (void) |
bool | found (void) |
HPair< KEY, VALUE > * | getArray (void) |
KEY * | getKArray (void) |
KEY | getKey (VALUE value) |
VALUE | getValue (KEY key) |
VALUE * | getVArray (void) |
int | heightKTree (void) |
int | heightVTree (void) |
int | num (void) |
Public Attributes | |
KEY | key_notfound_data |
VALUE | value_notfound_data |
HSpeedyPair is a key-value pair template container, which based on dual avl tree. Uses an AVL to Key->Value search, and an another AVT tree to Value->Key search.
Definition at line 88 of file speedypair.h.
KEY HSpeedyPair< KEY, VALUE >::key_notfound_data |
The notfound value for key
Definition at line 107 of file speedypair.h.
VALUE HSpeedyPair< KEY, VALUE >::value_notfound_data |
The notfound value for value
Definition at line 109 of file speedypair.h.