免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1303 | 回复: 1
打印 上一主题 下一主题

写了一个计算时间的程序,但有个问题搞不懂 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-02-08 17:16 |只看该作者 |倒序浏览
Linux
GCC


  1. #include <stdio.h>;
  2. #include <time.h>;
  3. long
  4. convert2Sec(char *date){
  5.         //2005-02-04 23:35:53
  6.         time_t t;
  7.         char *year;
  8.         char *month;
  9.         char *day;
  10.         char *hour;
  11.         char *min;
  12.         char *sec;
  13.         struct tm time_str;
  14.         int i_year;
  15.         int i_month;

  16.         year = date;
  17.         date += 4;
  18.         *(date) = '\0';

  19.         month = (++date);
  20.         date += 2;
  21.         *(date) = '\0';

  22.         day = ++date;
  23.         date += 2;
  24.         *(date) = '\0';

  25.         hour = ++date;
  26.         date += 2;
  27.         *(date) = '\0';

  28.         min = ++date;
  29.         date += 2;
  30.         *(date) = '\0';
  31.         sec = ++date;
  32.         //printf("Year:%s Mon:%s Day:%s Hour:%s Min:%s Sec:%s\n",year,month,day,hour,min,sec);
  33.         //i_year = atoi(year) - 1900;
  34.         time_str.tm_year = atoi(year) - 1900;

  35.         //i_month = atoi(month) - 1;
  36.         time_str.tm_mon = atoi(month) - 1;

  37.         time_str.tm_mday = atoi(day);
  38.         time_str.tm_hour = atoi(hour);
  39.         time_str.tm_min = atoi(min);
  40.         time_str.tm_sec = atoi(sec);
  41.         time_str.tm_isdst = -1;
  42.         t =mktime(&time_str);
  43.         //printf("Inside Time:%ld",t);
  44.         return t;
  45. }



  46. main(argc, argv)
  47.         int     argc;
  48.         char    *argv[];
  49. {
  50.     char date[255];
  51.     char tmp[255];
  52.     char *line;
  53.     FILE *in;
  54.     FILE *out;
  55.     char *st_date = date;
  56.     char *end_date = date;
  57.     char c;
  58.     long st;
  59.     long end;
  60.     line = tmp;
  61.     if(( in = fopen(argv[1],"r" ))  == NULL){
  62.             printf("Can't read input file:%s\n",argv[1]);
  63.             exit(0);
  64.     }
  65.     else
  66.             printf("Reading file:%s\n",argv[1]);

  67.     if(( out = fopen(argv[2],"w" ))  == NULL){
  68.             printf("Can't read input file:%s\n",argv[2]);
  69.             exit(0);
  70.     }
  71.     else
  72.             printf("Reading file:%s\n",argv[2]);
  73.     while(!feof(in)){
  74.                 c = fgetc(in);
  75.                 if( c == '\n'){
  76.                         *line = '\0';
  77.                         line = tmp;
  78.                         //printf("Line:%s\n",line);
  79.                         //Count duration
  80.                         st_date = line;
  81.                         line += 19;
  82.                         *line++ = '\0';
  83.                         end_date = line;
  84.                         //Note the date in convert2Sec method would be changed.
  85.                         //fprintf(out,"%s %s",st_date,end_date);
  86.                         printf("%s %s",st_date,end_date);
  87.                         st = convert2Sec(st_date);
  88.                         end = convert2Sec(end_date);
  89.                         //printf("%ld %ld ",st,end);
  90.                         //fprintf(out,"%ld\n",end-st);
  91.                         printf("%ld\n",(end-st));
  92.                         //Back to start
  93.                         line = tmp;
  94.                 }
  95.                 else
  96.                         *line++ = c;
  97.     }
  98.     fclose(in);
  99.     fclose(out);
  100.     return 0;
  101. }


复制代码


conver2Sec的入口参数是一个char*,这里我会对其指针操作,调用完conver2Sec后,char*指针已经指到其它地方,如果直接打印,一定是错误的数据,请问好的解决方法是什么?
我相到的
1.函数内,将入口char*复制一份
2.函数外,将入口char*复制一份
但这样的话,临时变量不就变得相当多了?

请各位大侠修改上面一下的program,多谢

文件输入内容:
2005-02-05 16:21:48 2005-02-05 16:22:21
2005-02-05 16:20:54 2005-02-05 16:22:23
2005-02-05 16:22:13 2005-02-05 16:22:24
2005-02-05 16:21:31 2005-02-05 16:22:26
文件输出内容
2005-02-05 16:21:48 2005-02-05 16:22:21 33
2005-02-05 16:20:54 2005-02-05 16:22:23 89
2005-02-05 16:22:13 2005-02-05 16:22:24 11
2005-02-05 16:21:31 2005-02-05 16:22:26 55

论坛徽章:
0
2 [报告]
发表于 2005-02-09 00:02 |只看该作者

写了一个计算时间的程序,但有个问题搞不懂

临时变量该用多少就用多少,你的程序好好设计一下,不会需要那么多变量。如果利用time.h中提供的函数,程序写起来会很方便。

  1. #include <stdio.h>;
  2. #include <time.h>;

  3. int main(int argc, char *argv[])
  4. {
  5.         char buf[512];
  6.         char *s_date = buf, *e_date;
  7.         FILE *in;
  8.         struct tm st,et;
  9.         double df_time;

  10.         in = fopen(argv[1],"r");               
  11.         while (fgets(buf,512,in) != NULL) {
  12.                 *(buf + strlen(buf) - 1) = '\0';
  13.                 printf("%s ",buf);
  14.                 *(buf + 19) = '\0';
  15.                 e_date = buf + 20;
  16.                 strptime(s_date,"%Y-%m-%d %H:%M:%S",&st);
  17.                 strptime(e_date,"%Y-%m-%d %H:%M:%S",&et);
  18.                 df_time = difftime(mktime(&et),mktime(&st));
  19.                 printf("%ld\n",(long)df_time);
  20.         }
  21. }
复制代码

运行结果:

  1. [kj501@c4 programs]$ cat tt
  2. 2005-02-05 16:21:48 2005-02-05 16:22:21
  3. 2005-02-05 16:20:54 2005-02-05 16:22:23
  4. 2005-02-05 16:22:13 2005-02-05 16:22:24
  5. 2005-02-05 16:21:31 2005-02-05 16:22:26
  6. [kj501@c4 programs]$ ./a.out tt
  7. 2005-02-05 16:21:48 2005-02-05 16:22:21 33
  8. 2005-02-05 16:20:54 2005-02-05 16:22:23 89
  9. 2005-02-05 16:22:13 2005-02-05 16:22:24 11
  10. 2005-02-05 16:21:31 2005-02-05 16:22:26 55
复制代码

程序没有加上错误处理,仅供参考。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP