码迷,mamicode.com
首页 >  
搜索关键字:zero dark matrix    ( 6343个结果
win7和XP下全局键盘钩子的方法并不相同
win7:hHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyBoardHookProcedure, IntPtr.Zero, 0);XP:hHook = SetWindowsHookEx(WH_KEYBOARD_LL, KeyBoardHookProcedure...
分类:Windows程序   时间:2014-05-09 12:44:00    阅读次数:396
de Casteljau算法的matlab实现
一直在写c++程序,不过对于一些作图程序来说,还是MATLAB比较实在。            de Casteljau算法是作贝塞尔曲线的一种高效的算法,其思想就是对[0,1]区间中所有的t,通过n个控制顶点不断递推得到一个顶点:下面是我的代码实现: function deCasteljau(P,Q) %P is 1*n matrix for X %Q is 1*n matrix for...
分类:其他好文   时间:2014-05-07 03:14:37    阅读次数:303
how many does the factorial of n have zero?
n! 末尾有多少个 0 个人信息:就读于燕大本科软件工程专业 目前大三; 本人博客:google搜索“cqs_2012”即可; 个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献; 博客内容:travel the binary tree by level 5 ( from down to top and from left to right ever...
分类:其他好文   时间:2014-05-06 21:19:02    阅读次数:554
【Leetcode】3Sum
【Question】 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in ...
分类:其他好文   时间:2014-05-06 14:57:29    阅读次数:318
纯div+css制作的弹出菜单
二级dropdown弹出菜单--A CROSS BROWSER DROP DOWN CASCADING VALIDATING MENUDEMOSDEMOS zero dollars wrapping text styled form active focus s...
分类:Web程序   时间:2014-05-06 13:11:29    阅读次数:493
dev/null和dev/zero区别 以及换回设备(loopback device)
转自:http://blog.chinaunix.net/uid-20729677-id-765105.htmldev/zero,是一个输入设备,你可你用它来初始化文件。/dev/zero------该设备无穷尽地提供0(是ASCII 0 就是NULL),可以使用任何你需要的数目——设备提供的要多的...
分类:其他好文   时间:2014-05-06 08:49:46    阅读次数:271
python in action
1. introductionfrom numpy import *random.rand(4,4)#array to matrixrandMat=mat(randon.rand(4,4))#matrix inverseIvrandMat=randMat.I#indentity matrixeye(...
分类:编程语言   时间:2014-05-05 22:24:10    阅读次数:336
Javascript Array
ArraysArrays are zero-indexed, ordered lists of values. They are a handy way to store a set of related items of the same type (such as strings), thoug...
分类:编程语言   时间:2014-05-04 19:08:29    阅读次数:533
x86_64的debian(wheezy)下使用qemu和busybox运行linux
1.编译kernel进入源码根目录make defconfig //这一步生成了默认的内核配置,请参考make help生成的信息。make //这一步生成了bzImage2.制作根文件系统dd if=/dev/zero of=rootfs.img bs=1M count=10 //生成了rootf...
分类:系统相关   时间:2014-05-03 23:59:39    阅读次数:592
leetcode: Search a 2D Matrix
Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted from l...
分类:其他好文   时间:2014-05-02 10:41:53    阅读次数:267
6343条   上一页 1 ... 631 632 633 634 635 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!