Rev 2416 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2416 | Rev 2461 | ||
|---|---|---|---|
| Line 96... | Line 96... | ||
| 96 | 96 | ||
| 97 | /** Head of doubly linked list of nodes. */ |
97 | /** Head of doubly linked list of nodes. */ |
| 98 | extavltree_node_t head; |
98 | extavltree_node_t head; |
| 99 | 99 | ||
| 100 | /** |
100 | /** |
| 101 | * Base of tree is value that is smaller or equal then every value in tree. |
101 | * Base of tree is value that is smaller or equal then every value in tree |
| - | 102 | * (valid for positive keys otherwise ignore this atribute). |
|
| 102 | * |
103 | * |
| 103 | * Base is added to current key when new node is inserted into tree. |
104 | * Base is added to current key when new node is inserted into tree. |
| 104 | * Base is changed to the key of node which is deleted with function |
105 | * Base is changed to the key of node which is deleted with function |
| 105 | * extavltree_delete_min. |
106 | * extavltree_delete_min. |
| 106 | */ |
107 | */ |