-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathisbst.cpp
106 lines (88 loc) · 2.28 KB
/
isbst.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// {"category": "Tree", "notes": "Check if binary search tree"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
using namespace std;
//------------------------------------------------------------------------------
//
// Implement a function to check if a binary tree is a binary search tree.
//
//------------------------------------------------------------------------------
class TreeNode
{
public:
int m_value;
TreeNode* m_pLeft;
TreeNode* m_pRight;
TreeNode(int value, TreeNode* pLeft = nullptr, TreeNode* pRight = nullptr)
: m_value(value), m_pLeft(pLeft), m_pRight(pRight) {}
};
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
bool IsBST(TreeNode* pNode, int*& pLastValue)
{
if (nullptr == pNode)
{
return true;
}
if (!IsBST(pNode->m_pLeft, pLastValue))
{
return false;
}
if (nullptr == pLastValue)
{
pLastValue = new int;
}
else if (pNode->m_value <= *pLastValue)
{
return false;
}
*pLastValue = pNode->m_value;
if (!IsBST(pNode->m_pRight, pLastValue))
{
return false;
}
return true;
}
bool IsBST(TreeNode* pNode)
{
if (nullptr == pNode)
{
return false;
}
int* pLastValue = nullptr;
bool isBST = IsBST(pNode, pLastValue);
if (pLastValue != nullptr)
{
delete pLastValue;
}
return isBST;
}
//------------------------------------------------------------------------------
//
// Demo execution
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
TreeNode node1(1);
TreeNode node3(3);
TreeNode node5(5);
TreeNode node7(7);
TreeNode node2(2, &node1, &node3);
TreeNode node6(6, &node5, &node7);
TreeNode node4(4, &node2, &node6);
cout << (IsBST(&node4) ? "TRUE" : "FALSE") << endl;
node3.m_value = 4;
cout << (IsBST(&node4) ? "TRUE" : "FALSE") << endl;
node3.m_value = 3;
node5.m_value = 4;
cout << (IsBST(&node4) ? "TRUE" : "FALSE") << endl;
node5.m_value = 5;
cout << (IsBST(&node4) ? "TRUE" : "FALSE") << endl;
return 0;
}