void fun(char *str){ char *a = new
char[strlen(str)+1]; memcpy(a, str, strlen(str)+1); if (...) { return; } else if
(...) {return; } delete a; return;...
分类:
其他好文 时间:
2014-05-09 07:35:24
阅读次数:
257
$per_len=20000;//每次读多少字节$no_read_len=$content_len;//未读的字节(总字节大小)$str=‘‘;while($len<$content_len){$read=socket_read($socket,$per_len,PHP_BINARY_READ);$str.=$read;$len+=strlen($read);//总共读了多少字节}http://hi.baidu.com/cuttinger/item/..
分类:
Web程序 时间:
2014-05-09 06:45:59
阅读次数:
566
关于sizeof和strlen的一些测试结果记录。...
分类:
其他好文 时间:
2014-05-09 01:47:53
阅读次数:
243
题目链接:点击打开链接
题意:
给定一个字符串str 求字符串str的
循环节个数为 1-len 个的
最长子串长度
思路:套用kmp的性质
#include
#include
#include
using namespace std;
#define n 1300
void getnext(char str[n],int next[n]){
int m=strlen(str);...
分类:
其他好文 时间:
2014-05-08 17:12:53
阅读次数:
330
#include<stdio.h>
#include<windows.h>
#include<stdlib.h>
char*ReplaceString(constchar*srcStr,constchar*src,constchar*dest)//替换字符串,获得文件路径
{
char*ptr;
intlen=strlen(srcStr);
ptr=(char*)malloc(sizeof(char)*len+1);
strcpy(ptr,srcSt..
分类:
编程语言 时间:
2014-05-05 12:29:50
阅读次数:
422
#include#include#includeusing namespace std;int
main(){ int n,i; char a[100000]; cin>>a; sort(a,a+strlen(a)); do{
cout<<a<<endl; }while(next_permut...
分类:
其他好文 时间:
2014-05-01 06:20:37
阅读次数:
368
absolute//它使得你能够创建一个新变量, 并且该变量的起始地址与另一个变量相同.var
Str: string[32]; StrLen: Byte absolute
Str;//这个声明指定了变量StrLen起始地址与Str相同.//由于字符串的第0个位置保存了字符串的长度, 所以StrLe...
分类:
其他好文 时间:
2014-05-01 00:12:02
阅读次数:
441
摘要:本人首先介绍了C++中sizeof操作符的用法和注意事项,其次对比了和strlen的区别和使用,方便大家在写代码的时候查阅,和面试、笔试的时候复习。目录:sizeof的用法:sizeof和strlen的区别:sizeof的用法:sizeof是一种单目操作符,而不是函数。sizeof以字节形式给...
分类:
编程语言 时间:
2014-04-28 16:00:51
阅读次数:
559
12345678910111213#include void main(){char
*sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d
\n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:
其他好文 时间:
2014-04-28 15:27:16
阅读次数:
473