3

程序应该根据员工ID修改或删除特定记录,在修改部分它将修改后的记录作为新记录写入文件末尾,删除部分只工作一次,然后给我一个分段错误。

修改:

如何修改代码以在同一位置重写已编辑的记录?

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

struct record_em{
    int id;
    char name[20];
    int salary;
    int age;
};

int main( void )
{
    struct record_em employee;
    FILE *fp;
    int n;
    int ch;
    fp = fopen("empRecord.dat","rb+");

    printf("Enter Id Number:\n");
    scanf("%d",&n);
    rewind(fp);
    while (!feof(fp)){

        fscanf(fp,"%d %s %d %d", &employee.id, employee.name, &employee.salary, &employee.age);

        if (employee.id==n){
            printf("%d %s %d %d \n",employee.id, employee.name, employee.salary,employee.age);
            printf("\n Do you want to change the name ?\n");
            scanf("%d",&ch);

            if (ch==1){
                printf("Enter new name:\n");
                scanf("%s",employee.name);
            }
            printf("\n Do you want to change the salary ?(y/n)\n");
            scanf("%d",&ch);

            if ( ch==2 ){
                printf("Enter new salary:\n");
                scanf("%d",&employee.salary);
            }
            printf("\n Do you want to change the age ?(y/n)\n");
            scanf("%d",&ch);

            if ( ch==3 ){
                printf("Enter new age:\n");
                scanf("%d",&employee.age);
            }
            fseek(fp,-sizeof(employee),SEEK_CUR);
            fprintf(fp, "%d %s %d %d\n", employee.id, employee.name, employee.salary, employee.age);
            exit(0);
        }
    }
    printf("Record Not Found \n");
    return 0;
}

删除:

如何修改代码以使其根据需要多次删除记录?

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

struct record_em{
    int id;
    char name[20];
    int salary;
    int age;
};

int main()
{
    struct record_em employee;
    FILE *fp, *ft;
    int n;
    fp = fopen("empRecord.dat","r");
    ft = fopen("Temp.dat","wb+");

    printf("\nEnter ID of employee to delete ");

    scanf("%d",&n);
    rewind(fp);
    while (!feof(fp)){
        fscanf(fp,"%d %s %d %d", &employee.id, employee.name, &employee.salary,  &employee.age);

        if(employee.id!=n){
            fprintf(ft, "%d %s %d %d\n", employee.id, employee.name, employee.salary, employee.age);
        }
    }

    fclose(fp);
    fclose(ft);
    remove("empRecord.dat");
    rename("Temp.dat","EempRecord.dat");

    return 0;
}
4

4 回答 4

3

这是代码的关键点:

void update(char filename[],char name[])
{
    int records=0;
    FILE *fp = fopen(filename,"rb+");
    while(fread(&st,sizeof(st),1,fp)==1)
    {
         if(strcmp(name,st.name)==0)
         {
              printf("\nEnter new name: ");
              scanf("%s",st.name);
              printf("\nEnter new roll no.: ");
              scanf("%d",&st.roll);
              fseek(fp,sizeof(struct student)*records,SEEK_SET);//This is key line..
              fwrite(&st,sizeof(st),1,fp);
         }
         records++; // in the while loop...
    }
    fclose(fp);
}

下面是学生的结构:

struct student{
     int roll;
     char name[20];
}st;

这是修改/更新记录的一般方法。您可以对员工结构使用相同的语法。

于 2013-11-30T19:01:45.160 回答
1

我认为这是你的问题,首先你有一个减号,然后看到sizeof它有点奇怪,其次SEEK_CUR让你比当前文件移动得更远所以看看这里fseek(), rewind()

fseek(fp,-sizeof(employee),SEEK_CUR); //This is not the definitive read below.
         ^------minus symbol.  ^------- the type of seek.

我建议你做一些修改:

  1. 使用共同点Formatted File让您的生活更轻松,记住“完美就是简单”。

  2. 用于SEEK_SET使用从文件开头开始的相对位置,其次使用.struct's size作为参数sizeof

    fseek( fp, sizeof( struct record_em), SEEK_SET );
    
  3. 使用memberid 作为接收器的键并使用一系列连续的数字,但显然您应该创建了一个包含 100、1000 个雇主的文件。

    1 Andrew 20000 27
    ^   ^      ^    ^_____ age 
    |   |      |__________ salary ( I would have used double here)
    |   |_________________ name
    |_____________________ id ( Key for the relative position from the beginning)
    
  4. 您将不得不改变主意,当您想象“删除”一条记录时,您将写一个空格(键除外) 示例 想象可怜的 Andrew 被解雇了,您将删除他的记录。

    1 "Empty space"   0   0
    ^       ^         ^   ^______ age (0 = nothing)
    |       |         |__________ salary (0 = nothing)
    |       |____________________ name ("" = nothing)
    |____________________________ id ( Key for the relative position from the beginning)
    

PD:目前正在添加更多信息。

于 2012-11-24T11:04:37.090 回答
1
SEEK_CUR

偏移量是相对于当前文件指针位置的。因此,实际上,您可以说“移动到我的当前位置加上 30 个字节”或“移动到我的当前位置减去 20 个字节”。例如。fseek(fp, -30, SEEK_CUR) 参考。http://beej.us/guide/bgc/output/html/multipage/fseek.html

我不认为他使用该sizeof()功能的否定是错误的。但是你最好还是sizeof(struct record_em)改用!

于 2013-07-11T14:05:02.230 回答
1

使用旨在用于操作文本文件 fprintf 的 C 函数来操作二进制文件并不好。

例如,在您的代码中,我看到:

fseek(fp,-sizeof(employee),SEEK_CUR);
fprintf(fp, "%d %s %d %d\n", employee.id, employee.name, employee.salary, employee.age);

这会给您带来问题,因为您在文件中作为二进制文件旅行,然后在其上写入字符。您应该改用 fwrite 函数。

我的建议:检查您的整个程序,定义您的持久性策略并与之保持一致。

于 2012-11-24T10:21:11.140 回答