Searched refs:BinaryTree (Results 1 – 1 of 1) sorted by relevance
299 class BinaryTree {301 BinaryTree() : m_root(nullptr) { } in BinaryTree() function302 ~BinaryTree() { in ~BinaryTree()328 …bool operator ==(const BinaryTree& other_tree) const { return compare_nodes(m_root, other_tree.m_r…