代码:<?php/*@desc:获取文件大小@author<lee>[<complet@163.com>]@paramname文件名@returnsize文件大小byte*/functiongetfilesize($name){$content=file_get_contents($name);$size=strlen($content);return$size;}测
分类:
Web程序 时间:
2018-06-08 22:41:04
阅读次数:
213
KMP C++ include include void get_next(char p,int next){ int pLen = strlen(p); next[0] = 1; int k = 1,j = 0; while(j ...
分类:
编程语言 时间:
2018-06-08 14:20:30
阅读次数:
170
三目运算符 三目运算符(a?b:c)可以作为逻辑运算的载体 规则:当a的值为真时,返回b的值;否则返回c的值 下面的程序运行结束后,a,b,c的值分别是多少? 将上面代码修改为: 三目运算符(a?b:c)的返回类型 + 通过隐式类型转换规则返回b和c中的较高类型 + 当b和c不能隐式转换到同—类型时 ...
分类:
其他好文 时间:
2018-06-07 19:31:27
阅读次数:
153
(1)strlen 获取字符串长度 (2)mb_strlen 使用方法: int mb_strlen ( string $str [, string $encoding ] )返回给定的字符串 string 的长度。encoding参数为字符编码。如果省略,则使用内部字符编码。 GBK编码的状态下 ...
分类:
Web程序 时间:
2018-06-05 20:03:03
阅读次数:
221
原字符串1,2,3,4,5,6, 去掉最后一个字符",",最终结果为1,2,3,4,5,6 代码如下: 系统自带的函数即可实现这样的效果,两种方法: ...
分类:
Web程序 时间:
2018-06-02 12:22:09
阅读次数:
167
继承与动态内存分配 1. 派生类中的数据成员没用 分配内存,则不需要为派生类提供 复制构造函数 、 赋值运算符 ;因为在使用已知对象对另一个对象初始化时派生类的默认复制函数将调用基类的显示复制函数(BaseClass(const BaseClass &bc))进行深拷贝,同理赋值运算符也一样。 2. ...
分类:
编程语言 时间:
2018-05-28 18:28:30
阅读次数:
172
函数strlen()和sizeof的区别: #include<stdio.h> #include<stdlib.h> #include<string.h> #define SENTENCE "It is a cat" int main() { char name[40]; gets(name); p ...
分类:
其他好文 时间:
2018-05-27 15:38:18
阅读次数:
204
#include #include int main() { char a[101],s[101]; int i,len,mid,next,top; gets(a);//读入一行字符串// len=strlen(a);//求字符串的长度// mid=len/2-1;//求字符串的中点// top=0... ...
分类:
其他好文 时间:
2018-05-27 12:02:16
阅读次数:
137
int trie[400001][26],len,root,tot,sum[400001]; bool p; int n,m; char s[11]; void insert() { len=strlen(s); root=0; for(int i=0;i<len;i++) { int id=s[i... ...
分类:
编程语言 时间:
2018-05-27 10:47:47
阅读次数:
164
#include <stdio.h> #include <string.h> int main(){ int n, i, j, len; char a[40]; scanf("%d", &n); getchar(); while (n--) { gets(a); len = strlen(a); f ...
分类:
其他好文 时间:
2018-05-26 19:34:55
阅读次数:
145