"; echo "";}say_hello();//函数调用function say_helloS($some_name)//有参数{ echo "hello,".$some_name; echo ""; echo "";}say_helloS("tang");say_hel...
分类:
Web程序 时间:
2014-08-08 15:37:46
阅读次数:
298
有些函数可以用来确定数组中的值总数及唯一值的个数。使用函数count()对元素个数进行统计,sizeof()函数时count()的别名,他们的功能是一样的。
分类:
其他好文 时间:
2014-08-08 15:32:46
阅读次数:
371
1. 文字拼接,文字查找,计数,截取 1 2 {assign var="comp" value=""} 3 {assign var="count" value="0"} 4 {utilCall fn="utilGetCalendarTimeSlice" rn="calend...
分类:
其他好文 时间:
2014-08-08 15:32:26
阅读次数:
295
无向图求割点模板题 1 #include 2 #include 3 #include 4 using namespace std; 5 const int N=1002; 6 7 int subnets[N]; 8 int dfn[N],low[N]; 9 int count,mun,son...
分类:
其他好文 时间:
2014-08-08 15:24:46
阅读次数:
201
Description
Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone catalogue listed these numbers:
1. Emergency 911
...
分类:
其他好文 时间:
2014-08-08 12:49:16
阅读次数:
187
一道应用kmp算法中next数组的题目
这其中vis[i]从1加到n
vis[i]=[next[i]]+1;
#include
#include
#include
#include
#include
using namespace std;
char s[200005];
int b;
int next[200005];
int vis[200005];
void n...
分类:
其他好文 时间:
2014-08-08 09:42:11
阅读次数:
168
/*
KMP算法
*/
void main()
{
putsl(find('abc123','c1'))
putsl(find('abc123','c2'))
}
int find(rstr s,rstr p)
{
next=get_next(p)
i=0
j=0
for i<s.count&&j<p.count
if j==-1||s[i]==p[j]
i++
j...
分类:
其他好文 时间:
2014-08-08 02:00:55
阅读次数:
209
-- sql语句耗时百分比declare @tmptb table(id int,name varchar(50),total_worker_time bigint,rate varchar(50),execute_count bigint);with cte1 as(select a.*,t.*f...
分类:
数据库 时间:
2014-08-07 21:52:00
阅读次数:
351
题意:给你n(n#include #include #include #include #include #include using namespace std;#define N 207vector vx,vy;map hx,hy;int dx[4] = {0,0,1,-1};int dy[4]...
分类:
其他好文 时间:
2014-08-07 21:42:20
阅读次数:
260
mysql 中 FIND_IN_SET 是判断某个字符串是否在带逗号的字符串中
例如 SELECT
t.group_id,
COUNT(group_id) tsum
FROM (SELECT
group_id
FROM xx
WHERE FIND_IN_SET(openid,'qqqwqnfocFq5IL2sXB2Qu0I,oarwerrr...
分类:
数据库 时间:
2014-08-07 19:08:40
阅读次数:
268