我要来面试
我要来面试
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
我要来面试的博客
全部文章
(共2篇)
中序遍历
# -*- coding:utf-8 -*- # class TreeNode: # def __init__(self, x): # self.val = x # &n...
2019-09-22
8
1242
一边压栈一边判断
一边压栈一边判断, -- coding:utf-8 -- class Solution: def IsPopOrder(self, pushV, popV): # write code here temp=[] j=0 for i in ...
2019-09-20
0
554