sswy 发表于 2018-7-6 10:44:35

学C带飞系列 39题课后作业问题

#include <stdio.h>
#include <stdlib.h>

#define INCREMENT 10
#define INIT_SIZE INCREMENT

int main(void)
{
      char ch;
      char *num; // 存储整个数据的首地址
      char *last; // 最近一次迭代的起始地址
      int limit = 0; // 每次迭代的限制值
      long times = 1; // 记录重新申请多少次内存

      num = (char *)malloc(INIT_SIZE);
      if (num == NULL)
      {
                exit(1);
      }

      last = num;

      printf("请输入一个整数:");

      while ((ch=getchar()) != '\n')
      {
                last = ch;
                if (limit >= INCREMENT)
                {
                        num = (char *)realloc(num, INIT_SIZE + INCREMENT * times++);
                        last += INCREMENT;
                        limit = 0;
                }
      }
      last = '\0';

      printf("你输入的整数是:%s\n", num);

      return 0;
}

这是动动手第0题答案,打印不出超过10个数,难道答案有问题?自己反复查找修改,也不能正确

sswy 发表于 2018-7-6 11:02:39

char *get_str(void)
{
      char ch;
      char *str; // 存储整个数据的首地址
      char *last; // 最近一次迭代的起始地址
      int limit = 0; // 每次迭代的限制值
      long times = 1; // 记录重新申请多少次内存

      str = (char *)malloc(INIT_SIZE);
      if (str == NULL)
      {
                exit(1);
      }

      last = str;//这里是一个小技巧,一直以来拨动ss来赋值操作等,str没动指针刻度,也就是说虽然指向的内存空间值关联,但是它们指针与指针间光标位置并不关联.

      printf("请输入一个字符串:");

      while ((ch=getchar()) != '\n')
      {
                last = ch;
                if (limit >= INCREMENT)
                {
                        str = (char *)realloc(str, INIT_SIZE + INCREMENT * times++);
                        
                        last=str;
                        
                        last += 10;//拨动指针,这也证明下标和指针刻度都是不关联的
                        
                        limit = 0;
                }
      }
      last = '\0';

      return str;
}





自己找到答案了,貌似是重新给动态内存,直接拨动指针last位置,指针位置会有错误,还原初始位置再拨动就好了
页: [1]
查看完整版本: 学C带飞系列 39题课后作业问题