Changeset abbc16e in mainline for generic/src/adt/btree.c
- 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
- File:
-
- 1 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.
Note:
See TracChangeset
for help on using the changeset viewer.