Changeset abbc16e in mainline for generic/src/adt
- Timestamp:
- 2006-06-16T11:17:54Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 62939f7
- Parents:
- b6529ae
- Location:
- generic/src/adt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/adt/btree.c
rb6529ae rabbc16e 215 215 /** Remove B-tree node. 216 216 * 217 * @param B-tree.217 * @param t B-tree. 218 218 * @param key Key to be removed from the B-tree along with its associated value. 219 219 * @param leaf_node If not NULL, pointer to the leaf node where the key is found. … … 235 235 /** Recursively remove B-tree node. 236 236 * 237 * @param B-tree.237 * @param t B-tree. 238 238 * @param key Key to be removed from the B-tree along with its associated value. 239 239 * @param node Node where the key being removed resides. … … 903 903 /** Rotate in a key from the right sibling or from the index node, if this operation can be done. 904 904 * 905 * @param rnode Node into which to add key from its right sibling or from the index node.905 * @param lnode Node into which to add key from its right sibling or from the index node. 906 906 * 907 907 * @return True if the rotation was performed, false otherwise. -
generic/src/adt/hash_table.c
rb6529ae rabbc16e 78 78 * 79 79 * @param h Hash table. 80 * @param hey Array of all keys necessary to compute hash index.80 * @param key Array of all keys necessary to compute hash index. 81 81 * @param item Item to be inserted into the hash table. 82 82 */
Note:
See TracChangeset
for help on using the changeset viewer.