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 farthest le...
分类:
编程语言 时间:
2015-05-23 10:03:37
阅读次数:
114
刚开始学习OpenGL,感觉这个挺有趣的(在绘制三维模型时,空间想象能力要求比较高,不然很头疼的)。
新东西,新心情。。。来一发红色三角形。
我就是要通过OpenGL来绘制一个红色的三角形。现在我们来看一下代码:
#include
void display()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // 清除屏幕和深...
分类:
其他好文 时间:
2015-05-20 22:25:43
阅读次数:
173
Altera ROM支持HEX和mif格式文件,生成代码如下:注意: mif 文件都是ASCⅡ码,负数应该是用反码补码处理的,否则负数会处理为0。另外可以用波形生成工具Guagle_wave生成mif波形文件clc;clear;close all;width = 10;depth = 2^width...
分类:
其他好文 时间:
2015-05-19 20:45:49
阅读次数:
278
http://www.cocoachina.com/industry/20140428/8248.html本文由@nixzhu翻译至raywenderlich的《grand-central-dispatch-in-depth-part-1》虽然 GCD 已经出现过一段时间了,但不是每个人都明了其主要...
分类:
其他好文 时间:
2015-05-19 18:09:06
阅读次数:
129
在有根树中,两个结点u和v的公共祖先中距离最近的那个称为最近公共祖先(lowest common ancestor)、如图lca(4,7) = 2, lca(6,8)=1, lca(5,8)=5记点v到根的深度为depth[v], 那么如果w是点u和v的公共祖先的话, 让u向上走depth[u] -...
分类:
编程语言 时间:
2015-05-19 00:23:40
阅读次数:
661
具体原理还没弄清楚,不过发现一个规律。当多个UI窗口存在叠加关系的时候,比如注册窗口在登陆窗口前面,在这样的需求中,为了保证注册窗口在登陆窗口前面,通过调整depth可以得到,开始画面中注册窗口并不显示,只有登陆窗口中的注册按钮按下,注册窗口才显示。经常的问题是如何保证注册窗口在按钮按下才显示在前面...
分类:
其他好文 时间:
2015-05-17 20:19:46
阅读次数:
125
题目: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 farthest...
分类:
其他好文 时间:
2015-05-17 00:40:24
阅读次数:
126
Maximum Depth of Binary Tree
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 farthest leaf node....
分类:
其他好文 时间:
2015-05-16 20:38:48
阅读次数:
152
https://leetcode.com/problems/maximum-depth-of-binary-tree/Maximum Depth of Binary TreeGiven a binary tree, find its maximum depth.The maximum depth i...
分类:
编程语言 时间:
2015-05-16 18:11:43
阅读次数:
124
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 farthest leaf node.
分析;
此题是求二叉树的深度,(无所谓最大深度),用递归的方法很容...
分类:
其他好文 时间:
2015-05-14 14:18:49
阅读次数:
117