-
Notifications
You must be signed in to change notification settings - Fork 3
treemap.h
minalraj edited this page Nov 5, 2017
·
1 revision
This header file is designed to define structure of each node the tree will contain as well as the structure of treemap.
The treemap stores the key value pairs representing each row of a table in the form of a node .
There are 2 structures defined:
struct node The node structure contains the variables for- left child , right child ,key and value of type byte array to store all values corresponding to the key.