-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecursive.cpp
71 lines (59 loc) · 1.37 KB
/
recursive.cpp
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
69
70
71
#include "node.hpp"
#include "binary_tree.hpp"
#include <iostream>
Node *BinaryTree::insertRecursive(Node *current, int value)
{
if (current == nullptr)
{
return new Node(value);
}
if (value < current->data)
{
current->left = insertRecursive(current->left, value);
}
else if (value > current->data)
{
current->right = insertRecursive(current->right, value);
}
return current;
}
void BinaryTree::inOrderRecursive(Node *current)
{
if (current == nullptr)
{
return;
}
inOrderRecursive(current->left);
std::cout << current->data << " ";
inOrderRecursive(current->right);
}
void BinaryTree::preOrderRecursive(Node *current)
{
if (current == nullptr)
{
return;
}
std::cout << current->data << " ";
preOrderRecursive(current->left);
preOrderRecursive(current->right);
}
void BinaryTree::postOrderRecursive(Node *current)
{
if (current == nullptr)
{
return;
}
postOrderRecursive(current->left);
postOrderRecursive(current->right);
std::cout << current->data << " ";
}
int BinaryTree::maxDepthRecursive(Node *current)
{
if (current == nullptr)
{
return 0;
}
int leftDepth = maxDepthRecursive(current->left);
int rightDepth = maxDepthRecursive(current->right);
return std::max(leftDepth, rightDepth) + 1;
}