Added comments.
FossilOrigin-Name: aed38b36b4f76bf44e7af2cf877c6fed1026a8ef599e69b567316c960f59037a
This commit is contained in:
parent
e51d715b8b
commit
747dc5e1c2
@ -47,9 +47,13 @@
|
||||
* Defines the structure of an AVL Node.
|
||||
*/
|
||||
struct mavlnode {
|
||||
/** Pointer to data, thant belongs to the node */
|
||||
void *data;
|
||||
/** Pointer to left son*/
|
||||
struct mavlnode *left;
|
||||
/** Pointer to right son*/
|
||||
struct mavlnode *right;
|
||||
/** AVL balance */
|
||||
int bal;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user