#include<stdio.h>
//#include<assert.h>
voidmy_reverse(char*left,char*right)
{
//assert(left);
//assert(right);用以处理指针函数为空,保证有效
while(left<right)
{
chartmp=*left;//借助中间变量实现逆置
*left=*right;
*right=tmp;
left++;
right--;
}..
分类:
编程语言 时间:
2015-10-31 18:46:04
阅读次数:
548
#include<stdio.h>
#include<assert.h>
/*求字符串长度*/
intmy_strlen(char*str)
{
assert(str);
intcount=0;
while(*str)
{
count++;
str++;
}
returncount;
}
/*逆置函数*/
char*reverse_str(char*start,char*end)
{
char*ret=start;
chartemp;
whi..
分类:
编程语言 时间:
2015-10-31 18:43:19
阅读次数:
200
有一个字符数组的内容为:"studentaami",请你将数组的内容改为"iamastudent".
要求:
不能使用库函数。只能开辟有限个空间(空间个数和字符串的长度无关)。
#include<stdio.h>
#include<assert.h>
intmy_len(char*str)
{
intcount=0;
assert(str);
while(*st..
分类:
编程语言 时间:
2015-10-31 18:42:46
阅读次数:
238
#include<stdio.h>
#include<assert.h>
intlength(constchar*str)
{
intlen=0;
assert(str);
while(*str)
{
len++;
str++;
}
returnlen;
}
voidreverse_str(char*start,char*end)
{
while(start<end)
{
chartmp=*start;
*start=*end;
*end=tmp;
start++;
end--..
分类:
编程语言 时间:
2015-10-31 18:41:09
阅读次数:
188
条件判断语句(这些语句都是写在smarty模板中的) {if $name eq 'Tom'} Welcome Sir {elseif $name eq 'Wilma'} Welcome Ma'am {else} Welcome,whatever y...
分类:
其他好文 时间:
2015-10-31 15:44:51
阅读次数:
235
1、相亲过程:你有房子么?你有钱么?你有能力么?【结婚吧】【先买房子在结婚】【先赚钱再买房子再结婚】都没有【拜拜~~】利用if嵌套做相亲过程2、(表达式)?a:b如果表达式成立,走a;如果不成立,走b输入现在的小时数,判断现在是am还是pm输出【现在是am/pm几点】
分类:
其他好文 时间:
2015-10-31 09:02:12
阅读次数:
300
有一个字符数组的内容为:"studentaami",请你将数组的内容改为"iamastudent".
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
intmy_strlen(constchar*s)
{
char*eos=(char*)s;
while(*eos)
{
eos++;
}
return(eos-s);
}
void*my_strcmp(cha..
分类:
编程语言 时间:
2015-10-31 01:45:46
阅读次数:
321
So glad that I have such a good home where I can share what I learn and what I am confused. There is only one rule that I need to clarify: Keep Writin...
分类:
其他好文 时间:
2015-10-30 12:02:24
阅读次数:
136
两个技术要点:1.使用TemplateHelper.processTemplate方法生成目标PDF的InputStream流,再使用ftp中上传流的方法将其上传至附件服务器。2.在请求中调用AM。其中最重要的方法便是在请求中调用AM。SourcingPrintingAMImpl am = (Sou...
分类:
Web程序 时间:
2015-10-30 10:35:20
阅读次数:
266
#include<stdio.h>
voidmy_reverse(intlen,chararr[])
{
intleft=0;
intright=len-1;
while(left<right)
{
chartmp=arr[left];
arr[left]=arr[right];
arr[right]=tmp;
left++;
right--;
}
}
intmain()
{
chararr[]="tnedutsamai";
intlen=sizeof(arr)/sizeof(arr[0])..
分类:
编程语言 时间:
2015-10-29 18:27:28
阅读次数:
148