码迷,mamicode.com
首页 >  
搜索关键字:net    ( 133240个结果
eCos中断模型
http://blog.csdn.net/chychc/article/details/8313458eCos中断模型(1)ISR和DSR英文全称 Interrupt Service Routine 中断处理是实时操作系统一个重要部分。及时地处理中断源是很重要的,但一些必须被视为原子操作(不能被中断...
分类:其他好文   时间:2015-01-06 13:25:26    阅读次数:331
关于ios下录音
http://blog.csdn.net/silencetq/article/details/8447400我是采用的AVAudioRecorder这个框架来进行录音这个录音跟官方网站上的speakHere有些区别,最大的区别是,这个必须要录制完成才能处理文件,而speakhere示例是可以实现边录...
分类:移动开发   时间:2015-01-06 13:23:07    阅读次数:143
[LeetCode]100 Same Tree
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
[LeetCode]101 Symmetric Tree
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
[LeetCode]102 Binary Tree Level Order Traversal
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
[LeetCode]87 Scramble String
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
[LeetCode]104 Maximum Depth of Binary Tree
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
[LeetCode]103 Binary Tree Zigzag Level Order Traversal
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
菜单编写(VC_Win32)
http://blog.csdn.net/tcjiaan/article/details/8497535 http://blog.csdn.net/kz_ang/article/details/8130955 菜单在 .rc 文件中的格式 .rc 中的菜单格式 虽然现在微软的编译器中都会自动生成好用的 rc 资源但是还是可以了解下它内部代码的意义. ...
分类:Windows程序   时间:2015-01-06 12:03:24    阅读次数:315
js模拟鼠标滑过展示title效果
js模拟鼠标滑过展示title效果...
分类:Web程序   时间:2015-01-06 12:02:34    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!