http://blog.csdn.net/chychc/article/details/8313458eCos中断模型(1)ISR和DSR英文全称 Interrupt Service Routine 中断处理是实时操作系统一个重要部分。及时地处理中断源是很重要的,但一些必须被视为原子操作(不能被中断...
分类:
其他好文 时间:
2015-01-06 13:25:26
阅读次数:
331
http://blog.csdn.net/silencetq/article/details/8447400我是采用的AVAudioRecorder这个框架来进行录音这个录音跟官方网站上的speakHere有些区别,最大的区别是,这个必须要录制完成才能处理文件,而speakhere示例是可以实现边录...
分类:
移动开发 时间:
2015-01-06 13:23:07
阅读次数:
143
https://oj.leetcode.com/problems/same-tree/http://blog.csdn.net/linhuanmars/article/details/22839819/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publicclassSolution{
publicbooleanis..
分类:
其他好文 时间:
2015-01-06 12:10:11
阅读次数:
135
https://oj.leetcode.com/problems/symmetric-tree/http://blog.csdn.net/linhuanmars/article/details/23072829/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publicclassSolution{
publicbool..
分类:
其他好文 时间:
2015-01-06 12:09:50
阅读次数:
173
https://oj.leetcode.com/problems/binary-tree-level-order-traversal/http://blog.csdn.net/linhuanmars/article/details/23404111/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publicclassS..
分类:
其他好文 时间:
2015-01-06 12:09:39
阅读次数:
175
https://oj.leetcode.com/problems/scramble-string/http://blog.csdn.net/linhuanmars/article/details/24506703publicclassSolution{
publicbooleanisScramble(Strings1,Strings2)
{
if(s1==null||s2==null||s1.length()!=s2.length())
returnfalse;
if(s1.isEmpty()&&am..
分类:
其他好文 时间:
2015-01-06 12:09:05
阅读次数:
134
https://oj.leetcode.com/problems/maximum-depth-of-binary-tree/http://blog.csdn.net/linhuanmars/article/details/19659525/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publicclassSoluti..
分类:
其他好文 时间:
2015-01-06 12:08:50
阅读次数:
184
https://oj.leetcode.com/problems/binary-tree-zigzag-level-order-traversal/http://blog.csdn.net/linhuanmars/article/details/24509105/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publi..
分类:
其他好文 时间:
2015-01-06 12:07:28
阅读次数:
147
http://blog.csdn.net/tcjiaan/article/details/8497535
http://blog.csdn.net/kz_ang/article/details/8130955
菜单在 .rc 文件中的格式
.rc 中的菜单格式
虽然现在微软的编译器中都会自动生成好用的 rc 资源但是还是可以了解下它内部代码的意义.
...