码迷,mamicode.com
首页 >  
搜索关键字:reading    ( 1497个结果
Method Calling in Perl
This is notes from reading the "object oriented perl programming".Elements of the @_ array are special in that they are not copies of the actual argum...
分类:其他好文   时间:2014-09-10 22:28:51    阅读次数:252
hdu 4990 Reading comprehension (矩阵快速幂)
//f[n]=2*f[n-2]+f[n-1]+1 //矩阵快速幂 # include # include # include # include using namespace std; struct node { __int64 m[3][3]; }; __int64 mod; node answ,origin,d; node f(node a,node b) { __int64...
分类:其他好文   时间:2014-09-09 13:20:58    阅读次数:147
HDU 4990 Reading comprehension (找规律+矩阵快速幂)
题目链接:HDU 4990 Reading comprehension 题目给的一个程序其实就是一个公式:当N=1时 f[n]=1,当n>1时,n为奇数f[n]=2*f[n-1]+1,n为偶数f[n]=2*f[n-1]。 先不取模,计算前十个找规律。得到一个递推公式:f[n]=2*f[n-2]+f[n-1]+1 然后快速幂解决之。 给出一个神奇的网站(找数列通项):http://oeis....
分类:其他好文   时间:2014-09-08 09:39:46    阅读次数:283
HDU 4990 Reading comprehension(找规律+矩阵快速幂)
HDU 4990 Reading comprehension(找规律+矩阵快速幂)...
分类:其他好文   时间:2014-09-07 23:51:56    阅读次数:424
Reading Notes:《如何阅读一本书》
在知乎看到有人推荐,适逢中秋假期,抽了一个下午,粗读了一遍,受益匪浅,希望自己在以后的读书过程中能运用到。 总分总的框架,先讲主动阅读的基础,然后讲阅读的四个层次,最后提到心智成长。有一句话,说的极妙,“如果你的阅读目的是要变成一个更好的阅读者,那么你就不能魔道任何书和文章都读。”愿自己能从一个爱读者之人,变成会读书之人。 主动阅读: 一个阅读者要提出的四个基本问题 1.整...
分类:其他好文   时间:2014-09-07 21:12:15    阅读次数:273
Reading Notes: 《拖延心理学》
6、7、8,三个月没上CSDN了【中间有一个月被世界杯夺了魂,其他时间不知道在搞什么鬼╮(╯▽╰)╭】,今天login后,看到一条私信。诶呦,我去,上次大数据读书汇赠书活动抽中我了呀,截止日期6月23日,默默看看桌面右下角,2014-09-06,啊啊啊啊啊啊,我的书TT__TT 喏,上面就是一个重度拖延症患者的生活一幕,我常常生活在plan-->do-->delay-->cry,好好的PDC...
分类:其他好文   时间:2014-09-06 22:34:44    阅读次数:282
流量来源分析 0801 0810 0820 流量数据重跑
重跑这3天的数据执行过程和遇到的问题:①执行 shsiteKeyDataNew.sh 3 20140801 ;错误提示:awk: cmd. line:39: fatal: cannot open file `../data_today/row_data_20140801*' for reading ...
分类:其他好文   时间:2014-09-03 21:09:57    阅读次数:201
Jessica's Reading Problem
DescriptionJessica's a very lovely girl wooed by lots of boys. Recently she has a problem. The final exam is coming, yet she has spent little time on ...
分类:其他好文   时间:2014-09-01 22:34:03    阅读次数:294
Reading List
[2014-08-25]things want to do : assembly win32 MFC COM/COM+ ATL ActiveX TCP/IP object-orientied analysis and design with application...
分类:其他好文   时间:2014-08-25 19:02:14    阅读次数:200
Pro ASP.NET MVC 4, 4th edition Reading note---Part(1) DI
What I learned from Pro ASP.NET MVC 4 bookOpen source of Asp.net MVChttp://www.opensource.org/licenses/ms-pl.html1. Introduce new trends of web develo...
分类:Web程序   时间:2014-08-25 11:47:44    阅读次数:214
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!