zsh669 2021-11-22 12:23 采纳率: 87.5%
浏览 29
已结题

关于结构体的程序,刚学习,可能一些写法会有问题,请求帮助

程序要求:

a) 用结构体定义以下学生信息,结构体名:struct student

学号、姓名和成绩 (包括3门课程的成绩,可用一个数组表示);

b) 编写函数来用键盘输入所有学生的信息/inputScore

原型:int inputScore(struct student *s, int maxnum);

输入:struct student *s; 结构体指针

  int maxnum; 系统允许输入的最大的学生数量

返回:实际输入的学生人数

提示:先输入学生数量(不允许超出maxnum),然后输入每一个学生信息

c) 编写函数输出一个学生的所有信息/printScore

原型:void printScore(struct student *s);

输入:struct student *s; 结构体指针

返回:无

d) 编写学生信息排序函数,对学生信息按姓名排序/sortScore

原型:void sortScore(struct student *s, int n);

输入:struct student *s; 结构体指针

  int n; 需排序的个数

返回:无

提示:姓名的比较,需要使用strcmp函数

e) 编写二分查找函数,根据姓名查找学生

f) 编写主函数

定义结构体变量数组(局部变量);

调用inputScore函数,从键盘获得学生信息,以及学生个数;

调用sortScore函数,对学生信息排序;

用for循环,输出每个学生的所有信息,使用printScore函数

输入学生姓名,查找相应的成绩

  1. #include<stdio.h>
  2. #include<string.h>
  3. struct student{
  4. int ID;
  5. char name[10];
  6. int grade[3];
  7. };
  8. //键入所有学生信息
  9. int inputScore(struct student* s,int maxnum)
  10. {
  11. int i=0,k=0,num;
  12. scanf("%d",&num);
  13. struct student a[10];
  14. for(i=0;i<num;i++){
  15. scanf("%d%s",&a[i].ID,&a[i].name);
  16. for(k=0;k<3;k++){
  17. scanf("%d",&a[i].grade[k]);
  18. }
  19. if(i>maxnum-1){
  20. break;
  21. }
  22. }
  23. s=a;
  24. return num;
  25. }
  26. void printScore(struct student *s){
  27. int i,k;
  28. struct student a[10];
  29. s=a;
  30. for(i=0;a[i].name!=0;i++){
  31. printf("%d,%s",a[i].ID,a[i].name);
  32. for(k=0;k<3;k++){
  33. printf("%d",a[i].grade[k]);
  34. }
  35. printf("\n");
  36. }
  37. }
  38. //从小到大
  39. void sortScore(struct student *s,int n)
  40. {
  41. int i,j,k;
  42. struct student *t;
  43. for(i=0;i<n;i++){
  44. for(j=i+1;j<n;j++){
  45. k=strcmp((s+i)->name,(s+j)->name);
  46. if(k>0){
  47. *t=*(s+i);
  48. *(s+i)=*(s+j);
  49. *(s+j)=*t;
  50. }
  51. }
  52. }
  53. }
  54. int bsearch(struct student *s,int n,char name[])
  55. {
  56. int max=n-1,min=0,mid=(max+min)/2;
  57. int i=0,k,rank;
  58. for(i=0;i<=max;i++){
  59. k=strcmp(name,(s+mid)->name);
  60. if(k==0){
  61. rank=mid;
  62. }
  63. if(k>0){
  64. min=mid;
  65. }
  66. if(k<0){
  67. max=mid;
  68. }
  69. }
  70. return rank;
  71. }
  72. int main()
  73. {
  74. struct student *s;
  75. int maxnum;
  76. scanf("%s",&maxnum);
  77. int num=inputScore(&s,maxnum);
  78. printScore(&s);
  79. sortScore(s,num);
  80. char name[10];
  81. scanf("%s",name);
  82. int rank=bsearch(s,num,name);
  83. printf("%d",(s+rank)->grade);
  84. return 0;
  85. }

从printScore就出现了问题

展开全部

  • 写回答

1条回答 默认 最新

  • CSDN专家-link 2021-11-22 12:33
    关注

    scanf("%s",&maxnum);
    改为
    scanf("%d",&maxnum)
    仔细一看,错误很多啊。
    int num=inputScore(&s,maxnum); 第一个参数传递类型错误,&s是指针的指针啊。
    另外,inputScore参数定义的不行,s指针不能在函数内部修改指针地址,而且指向一个函数内的局部变量也是错误的
    有点千疮百孔了,还有很多错误啊......

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
    zsh669 2021-11-22 16:25

    1. void sortScore(struct student *s,int n)
    2. {
    3. int i,j,k;
    4. struct student t;
    5. for(i=0;i<n;i++){
    6. for(j=i+1;j<n;j++){
    7. if(strcmp((s+i)->name,(s+j)->name)>0){
    8. t=*(s+i);
    9. *(s+i)=*(s+j);
    10. *(s+j)=t;
    11. }
    12. }
    13. }
    14. }

    我前面改对了,但是这个排序的好像在strcmp出了问题,我前面有<string.h>库

    回复
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 11月30日
  • 已采纳回答 11月23日
  • 创建了问题 11月22日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部