class Solution(object):
def isValidSerialization(self, preorder):
"""
:type preorder: str
:rtype: bool
"""
#a null node use a slot
#a non-null node use a slot but create 2 slots, net gain 1 slot
nodes=preorder.split(',')
slot=1
for node in nodes:
if slot==0:return False
if node=='#':
slot-=1
else:
slot+=1
return slot==0
331. Verify Preorder Serialization of a Binary Tree
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 要求在不重建树的情况下,判断一个字符串是否为某树的先序遍历序列。 使用递归求解。 若一个序列只有一个“#“,显然这...
- 方法1:Stack 思路:当遍历这个序列,有以下几种情况,并且有相应几个事实:如果是个number c -> 说明...
- 分析 设置一个栈,栈内的元素有两个状态。 true状态表示两个孩子均未出现,false表示已经出现过1个孩子。 当...
- One way to serialize a binary tree is to use pre-order tr...
- One way to serialize a binary tree is to use pre-order tr...