码迷,mamicode.com
首页 >  
搜索关键字:step    ( 4105个结果
Django 和 struts 对比
转自:http://www.blogjava.net/shaofan/archive/2007/04/06/109007.html假设:用两者写一个最小的WEB程序。过程可以参照:1.struts的就太多了,随便哪个都可以2.python/django可以看limodou写的Django step ...
分类:其他好文   时间:2014-08-12 13:20:34    阅读次数:197
poj 2417 Discrete Logging(A^x=B(mod c),普通baby_step)
http://poj.org/problem?id=2417 A^x = B(mod C),已知A,B,C,求x。 这里C是素数,可以用普通的baby_step。 在寻找最小的x的过程中,将x设为i*M+j。从而原始变为A^M^i * A^j = B(mod C),D = A^M,那么D^i * A^j = B(mod C ), 预先将A^j存入hash表中,然后枚举i(0~M-1...
分类:其他好文   时间:2014-08-11 21:19:32    阅读次数:229
opengl 矩阵变换
#include #include #include GLfloat step=0.0,s=0.1; void CALLBACK display(); void CALLBACK display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glMatrixMode(GL_PROJECTIO...
分类:其他好文   时间:2014-08-11 17:50:02    阅读次数:183
mysql升级5.1到5.6
因为Ubuntu的apt库里MySQL最新版本依然是5.1,所以升级MySQL5.5 只有自行下载,并且由于两个版本间改动较大,所以务必先阅读官网的升级事项upgrading from from MySQL 5.1 to 5.5,确保自己的数据库以及配置适用新版。本文参考了一篇英文指南 A step...
分类:数据库   时间:2014-08-11 14:33:52    阅读次数:201
zoj 1649
//hnldyhy(303882171) 11:12:46// zoj 1649//bfs +优先队列#include #include #include using namespace std;struct node{ int x; int y; int step;};bool...
分类:其他好文   时间:2014-08-10 21:16:00    阅读次数:342
node.js调试
原生调试node debug app.js步骤node debug app.js表3-3 Node.js 调试命令命 令 功 能run 执行脚本,在第一行暂停restart 重新执行脚本cont, c 继续执行,直到遇到下一个断点next, n 单步执行step, s 单步执行并进入函数...
分类:Web程序   时间:2014-08-10 15:36:50    阅读次数:208
HTML5与CSS3权威指南.pdf3
表单验证required属性,可以应用在大多数的元素上,如果元素内容为空,则不允许提交pattern属性,将属性设置为某个格式的正则表达式min属性与max属性,规定数值类型或日期类型的input元素的专有属性,限制其范围step属性,控制input元素中值增加或减少的步幅,如果用户输入的值在0到1...
分类:Web程序   时间:2014-08-10 12:43:50    阅读次数:391
webservice中DateTime类型参数的传入问题
This step-by-step article describes how to format DateTime and Date values in the XML that is extracted from an ADO.NETDataSet object. In ADO.NET, the DateTime and Date values of DataTable colum...
分类:Web程序   时间:2014-08-10 06:03:39    阅读次数:555
迷宫-广度搜索
#include #include using namespace std;const int N=100;const int M=100;typedef struct //定义迷宫结构 { char c; short int p_row,p_col,step;}Maze; Maze a[N][.....
分类:其他好文   时间:2014-08-09 21:20:19    阅读次数:382
EGit with eclipse to clone project from GitHub(Step by step)
利用eclipse的git插件 EGIT 从GitHub同步代码到本地进行开发(手把手教程)...
分类:系统相关   时间:2014-08-09 18:45:18    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!