码迷,mamicode.com
首页 >  
搜索关键字:count and say    ( 19436个结果
Euler_problem_14 for python
Euler 14的不同解法 ----所涉及的知识 1. yield 2.BF 3. decorator 4.cache 5.等等 def euler_problem_14():     """         最直接粗暴的解法:就是直接如下所示了     """     max_count = 1     max_value = 1     for i in xrange(10010...
分类:编程语言   时间:2014-06-05 04:46:16    阅读次数:266
自己写的一段重试代码
public class TestRetry { public static void main(String[] args) { retry(5); } private static void retry(int maxCount) { int count = 0; boolean result = false; do { count++; System....
分类:其他好文   时间:2014-06-03 05:10:35    阅读次数:179
Trie 字典树 删除操作
字典树的删除操作: 1 没找到直接返回 2 找到叶子节点的时候,叶子节点的count标志清零,代表不是叶子节点了 3 如果当前节点没有其他孩子节点的时候,可以删除这个节点 判断是否需是叶子节点,就检查叶子节点的count标志就可以了。 判断是否有其他孩子节点就需要循环26个节点了,如果都为空,那么就没有其他孩子节点了。 #include #include #include ...
分类:其他好文   时间:2014-06-03 00:49:49    阅读次数:279
Find them, Catch them
DescriptionThe police office in Tadu City decides to say ends to the chaos, as launch actions to root up the TWO gangs in the city, Gang Dragon and Ga...
分类:其他好文   时间:2014-06-02 09:38:19    阅读次数:219
汇编-memcpy的实现
memcpystack proc dest,src,cnt ;cnt is a count of dwords ;this function has a granularity of dwords mov edx,src mov eax,dest sub eax...
分类:其他好文   时间:2014-06-02 08:31:34    阅读次数:432
读书-算法《程序设计导引及在线实践》-简单计算题3:校门外的树
题目: 这个问题可以概括为输入一个大的整数区间,及一些可能互相重叠的在该大区间内的小的整数闭区间。求出未被覆盖的区间是多大。 代码实现如下: #include #define true 1#define false 0void main(){ int L, n, i, j; int count; i...
分类:其他好文   时间:2014-06-02 08:26:26    阅读次数:182
dd命令简单使用举例
dd命令简单使用举例 bs为单位,count为写入的范围区间,如下举例: 例:使用dd清除vote disk和ocr(裸设备)  $dd if=/dev/zero of=/dev/rrac_ocr1  bs=8192 count=17000 $dd if=/dev/zero of=/dev/rrac_vote1 bs=8192 count=17000 例:使用dd...
分类:其他好文   时间:2014-06-01 14:01:09    阅读次数:231
织梦只调用上一页下一页链接不要其他
//打开织梦系统文件 /include/arc.archives.class.php 找到GetPreNext函数 function GetPreNext($gtype='') { $rs = ''; if(count($this->PreNext)ArcID; ...
分类:其他好文   时间:2014-06-01 08:49:14    阅读次数:241
orale 查询每年、每月、每日统计量的sql语句
每年 select to_char(createtime, 'YYYY') 年, count(*) from table  group by to_char(createtime, 'YYYY'); 每季度 select to_char(createtime, 'q') 年, count(*) from table  group by to_char(createtime, 'q'); ...
分类:数据库   时间:2014-06-01 08:48:29    阅读次数:368
php pdo分页
文章标题 文章内容 编辑 prepare($query); $result_acticle->execute(); $msg_count =$result_act...
分类:Web程序   时间:2014-05-31 21:10:01    阅读次数:386
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!