binary_search_tree.hxx
Go to the documentation of this file.
1 /*===========================================================================================================
7 * Licensed under the MIT License, you may not use this file except in compliance with the License.
12 * Unless required by applicable law or agreed to in writing, software distributed under the License is
13 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and limitations under the License.
19 *=========================================================================================================*/
static std::unique_ptr< BST > Build(const IT &begin, const IT &end)
Definition: binary_search_tree.hxx:69
void SetRightChild(std::unique_ptr< BST > bst)
Definition: binary_search_tree.hxx:364
void SetLeftChild(std::unique_ptr< BST > bst)
Definition: binary_search_tree.hxx:363
static const BST * Remove(std::unique_ptr< BST > &bst, const Value &data)
Definition: binary_search_tree.hxx:227
Definition: combinations.hxx:26
static std::unique_ptr< BST > BuildFromSorted(const IT &begin, const IT &end)
Definition: binary_search_tree.hxx:100
std::unique_ptr< BST > & GetRightMostChild()
Definition: binary_search_tree.hxx:352
std::unique_ptr< BST > & GetPredecessor()
Definition: binary_search_tree.hxx:334
Definition: binary_search_tree.hxx:55
bool IsValid(std::unique_ptr< const BST * > &previousNode) const
Definition: binary_search_tree.hxx:306