diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-18 22:33:20 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-18 22:33:20 +0000 |
commit | 83f03e0e147b87140d5b698fd76ae9a17319cdef (patch) | |
tree | a0719a936ad39577234b8466f21bc00ae95aef1f /ace | |
parent | f06ba6e95fe4b9967f8d8a992d766b631d638550 (diff) | |
download | ATCD-83f03e0e147b87140d5b698fd76ae9a17319cdef.tar.gz |
beta checkin changes
Diffstat (limited to 'ace')
-rw-r--r-- | ace/RB_Tree.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ace/RB_Tree.h b/ace/RB_Tree.h index c0242de00f8..d6633fd0568 100644 --- a/ace/RB_Tree.h +++ b/ace/RB_Tree.h @@ -348,6 +348,13 @@ public: /// Return reverse iterator positioned at first node in tree. ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> rend (void); + /// Recursively tests the invariant red-black properties at each + /// node of the tree. Returns 0 if invariant holds, else -1. + /// This method is computationally expensive, and should only be + /// called for testing purposes, and not in code that depends on the + /// algorithmic complexity bounds provided by the other methods. + int test_invariant (void); + // = DEPRECATED methods. // Please migrate your code to use the new methods instead @@ -387,10 +394,6 @@ public: /// @deprecated void clear (void); - /// Recursively tests the invariant red-black properties at each - /// node of the tree. Returns 0 if invariant holds, else -1. - int test_invariant (void); - protected: // = Protected methods. These should only be called with locks held. @@ -439,7 +442,8 @@ protected: * RIGHT if the node is to the right of the node to be inserted, * or EXACT if an exactly matching node already exists. */ - ACE_RB_Tree_Node<EXT_ID, INT_ID> *find_node (const EXT_ID &k, RB_SearchResult &result); + ACE_RB_Tree_Node<EXT_ID, INT_ID> *find_node (const EXT_ID &k, + RB_SearchResult &result); /// Rebalance the tree after insertion of a node. void RB_rebalance (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); |