-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
二叉搜索树的后续遍历序列.py
55 lines (49 loc) · 2.22 KB
/
二叉搜索树的后续遍历序列.py
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
'''
输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。
如果是则输出Yes,否则输出No。
假设输入的数组的任意两个数字都互不相同。
二叉搜索树对于每一个非叶子节点, 均有结点左子节点<当前节点<结点右子节点
'''
# -*- coding:utf-8 -*-
class Solution:
def VerifySquenceOfBST(self, sequence):
if sequence == []:
return False
root = sequence[-1]
length = len(sequence)
if min(sequence) > root or max(sequence) < root:
return True
index = 0
# 二叉搜索树的左子树结点小于根节点
'''
下面这个for循环特别需要主要index=i必须写在if语句外面,
否则就会发生当root结点前的所有元素小于root的时候, 正确判断应该为True,
但是因为if语句没有进入, index = 0 ,
在进入二叉搜索树的右子树结点大于根结点的for循环的时候, 因为sequence的数都小于root, 就会判断出错
'''
for i in range(length-1):
index = i
if sequence[i] > root:
break
# 二叉搜索树的右子树结点大于根结点
# 这个循环中范围起始点必须是index+1, 不能为index
# 因为当root结点前的所有元素小于root的时候,index=length-2,
# 此时sequence[index]<root, 但是按照range(index, length-1), 第一个元素sequence[j]==sequence[index] < root, 返回False, 实际应该返回True才对
# 而使用index+1, 因为已经默认index>root, 所以从后面一个开始盘算右子树结点是否大于root, 也不会影响结果
for j in range(index+1, length-1):
if sequence[j] < root:
return False
left = True
if index > 0:
left = self.VerifySquenceOfBST(sequence[:index])
right = True
if index < length-1:
right = self.VerifySquenceOfBST(sequence[index:length-1])
return left and right
array = [5, 7, 6, 9, 11, 10, 8]
array2 = [4, 6, 7, 5]
array3 = [1, 2, 3, 4, 5]
S = Solution()
print(S.VerifySquenceOfBST(array))
print(S.VerifySquenceOfBST(array2))
print(S.VerifySquenceOfBST(array3))