- 博客(2)
- 收藏
- 关注
原创 判断一个树是否对称
使用递归的方法判断树是否对称,也让我更进一步的理解了递归。class Solution(object): def ismirror(self,left,right): if left==None and right == None: // 如果左右子树都为空,则对称 return True elif left == None or righ...
2018-05-16 18:23:09 1185 1
原创 用位置记录数据出现的频率
问题:返回第一个丢失的正数Given an unsorted integer array, find the first missing positive integer. Your algorithm should run in O(n) time and uses constant space. For example,Given [1,2,0] return 3,and [3,4,-1,1]...
2018-03-21 12:42:14 195
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人