码迷,mamicode.com
首页 >  
搜索关键字:count    ( 18169个结果
有穷的自动机构造
#include#include#includeint main(){ char p[30][30];//存放文法 char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; ...
分类:其他好文   时间:2015-12-03 21:14:13    阅读次数:156
有穷自动机自动转化
#include#include#includeint main(){ char p[30][30]; char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; int fl...
分类:其他好文   时间:2015-12-03 21:03:54    阅读次数:206
有穷自动机
#include#include#includeint main(){ char p[30][30]; char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; int flag=0; int l,m=0; char VN...
分类:其他好文   时间:2015-12-03 20:59:00    阅读次数:138
LeetCode解题报告-- Count and Say
题目: The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, … 1 is read off as “one 1” or 11. 11 is read off as “two 1s” or 21. 21 is read...
分类:其他好文   时间:2015-12-03 15:39:01    阅读次数:185
MySQL数据库inset性能优化
我们在使用中MySQL的时候难免会遇到大批量数据inset的情况,通常最简单的方法就是写一个insert,然后通过循环给变量赋值,批量插入数据库:   //save rddform for (int i = 0; i < rddformlist.Count; i++) { ...
分类:数据库   时间:2015-12-03 11:49:50    阅读次数:193
js区分鼠标单双击 阻止事件冒泡
function clickOrDblClick(obj) { count++; if (obj != undefined) { var rowStr = $.trim($(obj).find("td:eq(1)").text().replace(/※/g, '')); ...
分类:Web程序   时间:2015-12-03 09:53:20    阅读次数:543
python-scapy学习笔记-(1)
主要功能函数sniffsniff(filter="",iface="any",prn=function,count=N)filter参数允许我们对Scapy嗅探的数据包指定一个BPF(Wireshark类型)的过滤器,也可以留空以嗅探所有的数据包。 例如:嗅探所有的HTTP数据包,tcp port....
分类:编程语言   时间:2015-12-03 00:12:43    阅读次数:264
SQL Server 聚合函数算法优化技巧
Sql server聚合函数在实际工作中应对各种需求使用的还是很广泛的,对于聚合函数的算法优化自然也就成为了一个重点,一个程序优化的好不好直接决定了这个程序的声明周期。Sql server聚合函数对一组值执行计算并返回单一的值。聚合函数对一组值执行计算,并返回单个值。除了 COUNT 以外,聚合函数...
分类:数据库   时间:2015-12-02 22:22:40    阅读次数:278
bzoj1036:[ZJOI2008]树的统计Count
树的统计CountTime Limit:10 SecMemory Limit:162 MBSubmit:9540Solved:3854[Submit][Status][Discuss]Description一棵树上有n个节点,编号分别为1到n,每个节点都有一个权值w。我们将以下面的形式来要求你对这棵...
分类:其他好文   时间:2015-12-02 20:22:09    阅读次数:216
python list的常用方法
| append(...)| L.append(object) -- append object to end| | count(...)| L.count(value) -> integer -- return number of occurrences of value| | extend(.....
分类:编程语言   时间:2015-12-02 14:18:46    阅读次数:120
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!