Home | PSI RAS | RCIS | S-Tree Lib |
The S(b)-tree library implements the algorithms sketched above, and provides means for creating, storing, and performing the basic operations for S(b)-trees. The implementation is written in C++ while a pure C function interface is provided. To start using the library one needs
The key type is S_KEY. To create a key a S_CreateKey() function should be used. Given an array of bytes and its length it resets the given key to the specified value. void S_CreateKey( Note that one can store not only string-valued keys, but keys of an arbitrary structure by providing a conversion of a user defined key to a byte array. E.g. a number can be easily converted to a string using, say, the C run-time library routines itoa(), or ltoa(). A key weight equals the length of the byte array plus a constant given by S_EMPTY_KEY_WEIGHT. S_COMPLETION_CODE S_CreateTree( To create a S(b)-tree it is necessary to specify the following parameters.
A node weight is the sum of weights of keys contained in the node plus constant S_EMPTY_NODE_TREE_WEIGHT. In the implementation we need to store some header for each tree node that contains particularly the number of keys in the node, which is necessary for correct reads of the node. Thus, actually the tree rank according to our definitions above is p - S_EMPTY_NODE_TREE_WEIGHT. The restrictions for the parameters that provide correctness of the algorithms are as follows: S_CreateTree() creates an empty S(b)-tree with the specified parameters, forms the tree handle (S_TREE_HANDLE) in the output parameter phResTree, and returns the completion code (S_COMPLETION_CODE) of the function. The tree handle can be used then in other tree functions for specifying the tree the function is applied to. The completion code is S_CC_OK if the tree was successfully created. Otherwise one of the error codes is returned. Particularly, if the specified tree parameters do not satisfy the restriction a parameter inconsistency error code will be returned. S_COMPLETION_CODE S_LoadTree( Another way to get access to a S(b)-tree is to load it. S_LoadTree() loads the tree located at the specified file, forms the tree handle, and returns a completion code. S_COMPLETION_CODE S_CloseTree( S_CloseTree() closes the tree, saves it on disk in the file it was created at or loaded from, and releases the tree handle. A saved tree can be further opened. The released tree handle cannot be used any more for accessing the tree. S_COMPLETION_CODE S_SaveTree( S_SaveTree() saves the specified tree on disk in the file it was created at or loaded from, but doesn’t close the tree. After saving the tree remains accessible via the same tree handle. This function can be useful for temporary backups of the tree. S_COMPLETION_CODE S_Search( S_Search() performs searching in the specified tree for a specified key. As a result it forms the value of the specified Boolean parameter pbIsFound, which is S_TRUE if the key is found in the tree or S_FALSE otherwise, and returns a completion code. S_COMPLETION_CODE S_Insert( S_Insert() inserts the given key to the specified tree, a completion code is returned. S_COMPLETION_CODE S_Delete( S_Delete() deletes the given key from the specified tree, a completion code is returned. S_COMPLETION_CODE S_First( Since the set of keys stored in a S(B)-tree is linearly ordered, it is natural to be able to obtain the first, the last key in the set, the next, and the previous keys to a given one. S_First() looks for the first key in the specified tree, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the tree is not empty, or S_FALSE otherwise. S_COMPLETION_CODE S_Last( S_Last() looks for the last key in the specified tree, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the tree is not empty, or S_FALSE otherwise. S_COMPLETION_CODE S_Next( S_Next() looks in the specified tree for the key next to the given key poParKey, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the next key exists in the tree, or S_FALSE otherwise. Note that the given key poParKey shouldn’t necessarily be contained in the tree. To find the next means to find the minimal key in the tree that is greater than the given key. S_COMPLETION_CODE S_Previous( S_Previous() looks in the specified tree for the key previous to the given key poParKey, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the previous key exists in the tree, or S_FALSE otherwise. Note that the given key poParKey shouldn’t necessarily be contained in the tree. To find the previous means to find the maximal key in the tree that is less than the given key. The rest of the functions return the specified tree parameters: b, q, p, MuMax and the tree intrinsic properties:
Normally the return value of any of the functions is non-negative. A negative value is returned if the tree handle is invalid. Here are the prototypes of the functions:
Here is the list of completion codes with their value and short descriptions.
|
Konstantin Shvachko: |