免费注册 查看新帖 |

Chinaunix

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

[C] 请教bus error 10,在做USACO Greedy Gift Givers 的時候碰到的 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-04-20 09:43 |只看该作者 |倒序浏览
本帖最后由 chinanoahli 于 2015-04-20 09:46 编辑
  1. /*
  2. LANG: C
  3. TASK: gift1
  4. */

  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>


  8. FILE *input_file, *output_file;

  9. int total_people, gift, numbers_of_recever, money_giving[9];

  10. int scan_names_counter, scan_recever_counter, recever_in_names, money[9], money_receving[9], splid_the_gift, how_many_waves_gift_been_send;

  11. char names[9][13], recever[9][13], the_giver[13], the_recever[13];


  12. void scan_names(){
  13.         fscanf(input_file, "%d", &total_people);

  14.         scan_names_counter=0;
  15.         while(scan_names_counter<total_people){
  16.                 fscanf(input_file, "%s", names[scan_names_counter]);
  17.                 scan_names_counter++;
  18.         }
  19. }


  20. void givers_money(){
  21.         scan_names_counter=0;
  22.         fscanf(input_file, "%s", the_giver);
  23.         fscanf(input_file, "%d%d", &gift, &numbers_of_recever);
  24.         while(strcmp(the_giver, names[scan_names_counter])!=0){
  25.                 scan_names_counter++;
  26.         }
  27.         money_giving[scan_names_counter]=money_giving[scan_names_counter]-gift;
  28.         if(numbers_of_recever!=0){
  29.                 splid_the_gift=gift/numbers_of_recever;
  30.         }else{
  31.                 splid_the_gift=0;
  32.         }
  33. }


  34. void receive_the_money(){
  35.         scan_recever_counter=0;
  36.         while(scan_recever_counter<numbers_of_recever){
  37.                 fscanf(input_file, "%s", the_recever);
  38.                 scan_names_counter=0;
  39.                 while(scan_names_counter<total_people){
  40.                         if(strcmp(the_recever, names[scan_names_counter])==0){
  41.                                 money_receving[scan_names_counter]=money_receving[scan_names_counter]+splid_the_gift;
  42.                         }
  43.                         scan_names_counter++;
  44.                 }
  45.                 scan_recever_counter++;
  46.         }
  47. }


  48. void money_counter(){
  49.         scan_names_counter=0;
  50.         while(scan_names_counter<total_people){
  51.                 money[scan_names_counter]=money_receving[scan_names_counter]+money_giving[scan_names_counter];
  52.                 scan_names_counter++;
  53.         }
  54. }


  55. void print_gift_tab(){
  56.         scan_names_counter=0;
  57.         while(scan_names_counter<total_people){
  58.                 fprintf(output_file, "%s %d\n", names[scan_names_counter], money[scan_names_counter]);
  59.                 scan_names_counter++;
  60.         }
  61. }


  62. int main(){
  63.         input_file = fopen("gift1.in", "r");
  64.         output_file = fopen("gift1.out", "w+");


  65.         scan_names();
  66.         how_many_waves_gift_been_send=0;
  67.         while(how_many_waves_gift_been_send<total_people){
  68.                 givers_money();
  69.                 receive_the_money();
  70.                 how_many_waves_gift_been_send++;
  71.         }
  72.         money_counter();
  73.         print_gift_tab();
  74.        

  75.         fclose(input_file);
  76.         fclose(output_file);
  77.         return 0;
  78. }
复制代码
上面是我的代碼
讀下面兩個文件
  1. 5
  2. dave
  3. laura
  4. owen
  5. vick
  6. arm
  7. dave
  8. 200 3
  9. laura
  10. owen
  11. vick
  12. owen
  13. 500 1
  14. dave
  15. arm
  16. 150 2
  17. vick
  18. owen
  19. laura
  20. 0 2
  21. arm
  22. vick
  23. vick
  24. 0 0
复制代码
  1. 10
  2. mitnik
  3. Poulsen
  4. Tanner
  5. Stallman
  6. Ritchie
  7. Baran
  8. Spafford
  9. Farmer
  10. Venema
  11. Linus
  12. mitnik
  13. 300 3
  14. Poulsen
  15. Tanner
  16. Baran
  17. Poulsen
  18. 1000 1
  19. Tanner
  20. Spafford
  21. 2000 9
  22. mitnik
  23. Poulsen
  24. Tanner
  25. Stallman
  26. Ritchie
  27. Baran
  28. Farmer
  29. Venema
  30. Linus
  31. Tanner
  32. 1234 1
  33. Poulsen
  34. Stallman
  35. 536 3
  36. Farmer
  37. Venema
  38. Linus
  39. Ritchie
  40. 2000 1
  41. mitnik
  42. Baran
  43. 79 2
  44. Tanner
  45. Farmer
  46. Farmer
  47. 0 0
  48. Venema
  49. 12 9
  50. mitnik
  51. Poulsen
  52. Tanner
  53. Stallman
  54. Ritchie
  55. Baran
  56. Spafford
  57. Farmer
  58. Linus
  59. Linus
  60. 1000 1
  61. mitnik
复制代码
正常結束並輸出正確的數據到文件 不能正常輸出 bus error 10


英語一般,所以在命名變量的時候可能有點語法錯誤,請勿見笑
因為是初學,所以還請各位詳細指點!!

论坛徽章:
0
2 [报告]
发表于 2015-04-24 10:13 |只看该作者
本帖最后由 chinanoahli 于 2015-05-27 08:31 编辑

第17行定義兩個字符串陣列的時候有誤
我一直以為`char xx[9][..]`的意思是`char xx[0][..]~char xx[9][..]`
實際上在C裡面是這樣定義只有1~9,9個元素,但是下標卻從0開始,所以下標是0~8
只要更改成`char xx[10][..]`程序就可以正確地跑起來
`char xx[10][..]`的意思是1~10,共有10個元素,下標從0~9
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP