簡體   English   中英

C編程調用引用指針函數刪除結構體成員

[英]C programming call by reference pointer function to delete a member of a structure

這是用於功課,問題是要求制作一個像學生數據庫這樣的程序,我可以在其中使用指針函數從結構 s 中輸入、打印和刪除學生。 但是我無法刪除學生記錄,因為發生了一些奇怪的事情。 目標學生被刪除,但其余學生記錄(僅限姓名)被轉移,只有第一個字符是正確的。 請幫忙!

#include <stdio.h>
#include <string.h>
#define SIZE 50

typedef struct {
    int id;
    char name[50];
} Student;

void inputStud(Student *s, int size);
void printStud(Student *s, int size);
int removeStud(Student *s, int *size, char *target);
int main()
{
    Student s[SIZE];
    int size=0, choice;
    char target[80], *p;
    int result;

    printf("Select one of the following options: \n");
    printf("1: inputStud()\n");
    printf("2: removeStud()\n");
    printf("3: printStud()\n");
    printf("4: exit()\n");
    do {
        printf("Enter your choice: \n");
        scanf("%d", &choice);
        switch (choice) {
            case 1:
                printf("Enter size: \n");
                scanf("%d", &size);
                printf("Enter %d students: \n", size);
                inputStud(s, size);
                break;
            case 2:
                printf("Enter name to be removed: \n");
                scanf("\n");
                fgets(target, 80, stdin);
                if (p=strchr(target,'\n')) *p = '\0';
                printf("removeStud(): ");
                result = removeStud(s, &size, target);
                if (result == 0)
                    printf("Successfully removed\n");
                else if (result == 1)
                    printf("Array is empty\n");
                else if (result == 2)
                    printf("The target does not exist\n");
                else
                    printf("An error has occurred\n");
                break;
            case 3:
                printStud(s, size);
                break;
        }
    } while (choice < 4);
    return 0;
}

void inputStud(Student *s, int size)
{
    int i=0;
    char *p,dummy[50];
    while (i<size) {
        printf("Student ID: \n");
        scanf("%d",&((s+i)->id));
        printf("Student Name: \n");
        scanf("\n");
        fgets((s+i)->name, 50,stdin);
        if (p=strchr((s+i)->name,'\n')) *p = '\0';
        i++;
    }
}

void printStud(Student *s, int size)
{
    int i;
    printf("The current student list: \n");
    if (size==0) printf("Empty array\n");
    else {
        for (i=0; i<size; i++) {
            printf("Student ID: %d ",(s+i)->id);
            printf("Student Name: %s\n",(s+i)->name);
        }
    }
}

int removeStud(Student *s, int *size, char *target)
{
    int i,j,k;

    if (*size==0) return 1;
    for (i=0;i<*size;i++) {
        if (strcmp(((s+i)->name),target)==0) {
            --*size;
            for (j=i; j<=*size; j++) {
                k = j + 1;
                *((s+j)->name) = *((s+k)->name);
                (s+j)->id = (s+j+1)->id;
                if ((s+j+1)->id=='\0') (s+j)->id = '\0';
            }
            return 0;
        }
    }
    return 2;
}

你快到了。

問題在第 97 行:*((s+j)->name) = *((s+k)->name);

為了使其工作,該指令應替換為:

strcpy((s+j)->name, (s+k)->name);

為什么:

您正在處理字符數組,因此這樣做 *((s+j)->name) = *((s+k)->name) 意味着:“將 s+k->name 的第一個字符的值放入s+j->name 第一個字符”。 相反,您希望將 s+k 的全名復制到 s+j 名稱中。

關於如何使用 strcpy 你可以看看這里

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM