#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <malloc.h>
#define STEP 8 //空间增加的步长.一个字符是1字节,亦即8bit
char * getstr() //任意长度的字符串输入,返回字符串的首地址.
{
char *temp, *str=(char *)malloc(STEP);
int c=0, len=0, times=1, number=0;
if(!str)
{
printf("内存不够,无法开辟字符串空间!");
return (char *)NULL;
}
number+=times*STEP;
while((c=getche())!=’r’) //遇到回车则输入结束。
{
if(len==number)
{
times++;
number=times*STEP;
temp=str;
str=(char *)realloc(str,number);
if(str==NULL)
{
printf("内存不够,字符串输入受限!");
str=temp;
break;
}
}
*(str+len)=c;
len++;
}
str=(char *)realloc(str,len+1); //字符串的实际长短调整空间.
*(str+len)=’