2017年8月28日

LeetCode: 226 Invert Binary Tree(easy)

摘要: 题目: Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 代码: Invert a binary tree. 自己的(递归实现): 别人的: 自己的(使用队列,非递归实现): 非递归和递归的在Le 阅读全文

posted @ 2017-08-28 20:04 玲珑子 阅读(77) 评论(0) 推荐(0) 编辑

LeetCode: 520 Detect Capital(easy)

摘要: 题目: Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when on 阅读全文

posted @ 2017-08-28 16:26 玲珑子 阅读(98) 评论(0) 推荐(0) 编辑

【转载】C++: 关于递归

摘要: C通过运行时堆栈支持递归函数的实现。递归函数就是直接或间接调用自身的函数。 许多教科书都把计算机阶乘和菲波那契数列用来说明递归,非常不幸我们可爱的著名的老潭老师的《C语言程序设计》一书中就是从阶乘的计算开始的函数递归。导致读过这本经书的同学们,看到阶乘计算第一个想法就是递归。但是在阶乘的计算里,递归 阅读全文

posted @ 2017-08-28 10:55 玲珑子 阅读(96) 评论(0) 推荐(0) 编辑

LeetCode:104 Maximum Depth of Binary Tree(easy)

摘要: 题目: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthe 阅读全文

posted @ 2017-08-28 10:11 玲珑子 阅读(93) 评论(0) 推荐(0) 编辑

LeetCode: 485 Max Consecutive Ones(easy)

摘要: 题目: Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Note: The input array will only contain 0 and 1. The len 阅读全文

posted @ 2017-08-28 09:38 玲珑子 阅读(129) 评论(0) 推荐(0) 编辑

导航