forked from mandliya/algorithms_and_data_structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binarySearchTree.h
68 lines (60 loc) · 2.59 KB
/
binarySearchTree.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef BINARY_SEARCH_TREE_H
#define BINARY_SEARCH_TREE_H
#include <iostream>
namespace algo {
template <typename T>
class BinarySearchTree {
private:
struct BinaryNode {
T element;
BinaryNode *left;
BinaryNode *right;
BinaryNode( const T & obj = T(),
BinaryNode *lptr = nullptr,
BinaryNode *rptr = nullptr )
: element{ obj }, left { lptr }, right { rptr }
{ }
BinaryNode( T && obj, BinaryNode *lptr,
BinaryNode *rptr )
: element{ std::move(obj) }, left{ lptr }, right{ rptr }
{ }
}; // end of struct BinaryNode
public:
BinarySearchTree();
BinarySearchTree( const BinarySearchTree& rhs );
BinarySearchTree( BinarySearchTree && rhs );
BinarySearchTree & operator= ( const BinarySearchTree & rhs );
BinarySearchTree & operator= ( BinarySearchTree && rhs );
~BinarySearchTree( );
const T & findMin() const;
const T & findMax() const;
bool contains( const T & obj ) const;
bool empty( ) const;
void printTree(std::ostream & out = std::cout) const;
void clear() const;
void insert( const T & obj );
void insert( T && obj );
void remove( const T & obj );
const int height() const;
void prettyPrint( ) const;
BinaryNode * getRoot() const;
void mirror();
private:
BinaryNode *root;
const T & __findMin( BinaryNode *node ) const;
const T & __findMax( BinaryNode *node ) const;
bool __contains( BinaryNode *node, const T & obj ) const;
void __insert( BinaryNode * & node, const T & obj );
void __insert( BinaryNode * & node, T && obj );
void __remove( BinaryNode *node, const T & obj );
void __clear( BinaryNode *node ) const;
void __printTree( BinaryNode *node, std::ostream& out ) const;
BinaryNode * __copy( BinaryNode *node );
void __prettyPrint( BinaryNode *node, int indent = 0, std::ostream & out = std::cout) const;
const int __height( BinaryNode * node );
void __mirror( BinaryNode * & node );
}; // end of class BinarySearchTree
} // end of namespace algo
//for more clarity, functions are defined in below file
#include "impl/binarySearchTree.impl.h"
#endif