在 C 中检查结构数组是否为 'empty'

标签 c arrays structure

我正在制作一个程序,其行为有点像学生记录系统,使用结构中的结构数组。该程序允许添加、编辑和查看学生文件及其相应信息。在检查结构是否为空时,我的 displayAll 函数遇到问题。据说,如果没有将学科信息添加到学生个人资料中,我应该显示一条消息,并显示他们已注册的学科。但我很困惑如何做到这一点。一些建议将不胜感激。

我省略了代码的某些部分,以强调 displayAll 函数。

有人指出了这个帖子:Checking if an array of structs is empty or not ,但它并没有真正阻止我,因为我正在处理结构数组中的结构数组。

#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>
#include <ctype.h>

struct name{
    char fname[30];
    char lname[20];
    char mi;
};

struct local{
    char address[30];
    char city[20];
};

struct subjs{
    char courseCode[10];
    char courseDes[20];
    char grade;
};

struct student{
    char id[8];
    struct name studName;
    struct local place;
    struct subjs course[4];
};

void inputInfo(struct student *studInfo);   
void addSubjects(struct student *studInfo);
void displayAll(struct student info[], int limit);

int main(){
    struct student info[12];
    int i=0, j, courseLimit=0;
    char choice;
    char idVerify[8];

    do{
       printf("MENU");
       printf("\n\n[A] Add student Information");
       printf("\n[B] Add student subject");
       printf("\n[C] Edit student address or city");
       printf("\n[D] Edit subject grade");
       printf("\n[E] View individual student info/subjects");
       printf("\n[F] View all students with their corresponding subjects");
       printf("\n[g] Quit");
       printf("\n\nEnter choice: ");
       choice=tolower(getche());
       system("cls");

       switch (choice){
         case 'a': 
                inputInfo(&info[i]);
                i++;
                break;
         case 'b': 
                printf("Enter you id number for verification: ");
                gets(idVerify);
                for(j=0; j<i; j++){
                    if(strcmp(idVerify, info[j].id) == 0){
                        addSubjects(&info[j]);
                    }
                    else
                        printf("ID Number not found");
                }
                break;
         case 'c':
                //codes
                break;
         case 'd': 
                //codes
                break;
         case 'e':
                //codes 
                break;
         case 'f':
                displayAll(info, i);
                break;
         case 'g':
                printf("This program will now close.\nPress any key to continue.");
                break;
        default: printf("Invalid character. Try again");
                break;
    }

    getch();
    system("cls");

   }while (choice!='g');

}

 void inputInfo(struct student *studInfo){
  //codes
 }

void addSubjects(struct student *studInfo){
  //codes
 }

void displayAll(struct student info[], int limit){
   int i, j;
   if(limit == 0){
       printf("Records are empty");
    }

   else{
       for(i=0; i<limit; i++){
        printf("\nStudent Name: %s %c %s", info[i].studName.fname, info[i].studName.mi, info[i].studName.lname);
        printf("\nID Number: %s", info[i].id);
        printf("\nAddress and city: %s, %s", info[i].place.address, info[i].place.city);

        if(info[i].course[j].courseCode == 0){
            printf("\nNo enrolled subjects");
        }
        else{
            printf("\nSubjects:");
            for(j=0; j<4; j++){
                if(info[i].course[j].courseCode != 0){
                    printf("Subject %d", j+1);
                    printf("\nCourse Code: %s", info[i].course[j].courseCode);
                    printf("\nCourse Description: %s", info[i].course[j].courseDes);
                    printf("\nCourse Grade: %c", info[i].course[j].grade);
                    printf("\n");
                }
            }
        }



    }
}

}

最佳答案

您可以使用标志来跟踪是否在主题 for 循环中找到了主题。我将其命名为 found 并在循环之前清除它。然后在找到主题后将其设置在循环中。如果循环后标志仍然被清除,则打印所需的消息。要打印标题“主题”,您可以在循环内检查之前是否已找到(并打印)主题。

示例代码:

    int found = 0; // clear flag
    for(j=0; j<=4; j++){
        if(info[i].course[j].courseCode != 0){
            if(!found) { // if true then this will be the first subject to print
                printf("\nSubjects:");
            }
            found = 1; // set flag
            printf("Subject %d", j);
            // the other printfs
        }
    }
    if(!found) {  // check flag
         printf("No enrolled subjects.\n");
    }

这取代了整个

    if(info[i].course[j].courseCode == 0){
        ...
    } else {
        ...
    }

在学生循环中阻止。

关于在 C 中检查结构数组是否为 'empty',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34975232/

相关文章:

javascript - 查找出现奇数次的元素

header - zlib header 是什么样的?

c++ - 将 C 转换为 C++ : typdef generating error

c - 通过 UDP 套接字发送缓冲区时,延迟有时会增加

java - 查找整数数组中的最大数字

arrays - Vb.net:Array.clear Clean 相关数组问题

c++ - 在 C++ 中向/从二进制文件写入/读取结构

c++ - 用于编辑文本的最小 CPU 和内存开销数据结构?

c++ - 键盘记录器和鼠标追踪器 : should I use non-blocking I/O?

c - 如何使用具有相同名称的不同类型的指针?