从 txt 文件中保存、查找和删除结构
Posted
技术标签:
【中文标题】从 txt 文件中保存、查找和删除结构【英文标题】:Save, find and remove structure from txt file 【发布时间】:2015-05-11 09:53:14 【问题描述】:我正在学习 IT,而编程对我来说是新事物。上周我有一个任务要做。我必须编写一个可以将结构(公司员工的个人数据)保存到 file.txt 的程序。程序应该能够找到一个特定的人(输入他的名字或姓氏)并删除所有得到用户提供的姓氏的人。所有这些任务都应该在不同的功能中。直到现在我写了这个函数:
void struktura()
struct Person
char name[30];
char surname[30];
int age;
int height;
int weight;
;
int ile;
int i = 0;
printf("\n");
printf("How many persons would you like add to database (max 10 at once): ");
scanf("%d", &ile);
printf("\n");
if (ile >= 0)
printf("You added no one.\n");
else
struct Person *osoba[10]; //
while (i < ile)
osoba[i] = (struct Person*) malloc(sizeof (struct Person));
printf("Give a name: ");
scanf("%s", osoba[i]->name);
printf("Give a surname: ");
scanf("%s", osoba[i]->surname);
printf("Age: ");
scanf("%d", &osoba[i]->age);
printf("Height: ");
scanf("%d", &osoba[i]->height);
printf("Weight: ");
scanf("%d", &osoba[i]->weight);
printf("\n");
i = i + 1;
printf("You have added: \n\n");
i = 0;
while (i < ile)
printf("%d) Name: %s, Surname: %s, Age: %d years, Height: %d cm, Weight: %d kg.\n", i + 1, osoba[i]->name, osoba[i]->surname, osoba[i]->age, osoba[i]->height, osoba[i]->weight);
i = i + 1;
for (i = 0; i < ile; i++)
free(osoba[i]);
此外,我有一个将这些人保存到 file.txt 的代码。我想将代码(如下)分离到另一个函数,但我不知道如何将结构传递给函数。
FILE *save;
char name[30];
printf("\nWhere to save a database: ");
scanf("%s", name);
save = fopen(name, "a");
if (save == NULL)
printf("This file doesn't exist!");
getchar();
exit(1);
i = 0;
while (i < ile)
fprintf(save, "Name: %s, Surname: %s, Age: %d years, Height: %d cm, Weight: %d kg.\n",osoba[i]->name, osoba[i]->surname, osoba[i]->age, osoba[i]->height, osoba[i]->weight);
i = i + 1;
fclose(save);
我写了一个函数,它也可以打开 file.txt 的全部内容。我缺少的是:如何找到一个特定的人以及如何删除这些人(我正在考虑打开第二个临时文件并复制原始文件的内容,除了这些包含名字/姓氏的行)(全部在单独的函数中) .你有什么想法我怎么能做到这一点?我在一些书中寻找它,但找不到任何帮助。
【问题讨论】:
【参考方案1】:我想将代码(如下)分离到另一个函数,但我不这样做 知道如何将结构传递给函数。
在函数之外和函数之上定义struct Person
,这样它就可以在所有函数中使用。然后您可以将保存人员到文件的代码放入函数中
void save(int ile, struct Person *osoba[ile])
…
并调用它
save(ile, osoba);
如何找到特定的人
您可以使用以下函数,该函数比查找任务所需的复杂一点,但可以重复用于其他目的:
char prformat[] =
"Name: %s, Surname: %s, Age: %d years, Height: %d cm, Weight: %d kg.\n";
char scformat[] =
"Name: %[^,], Surname: %[^,], Age:%d years, Height:%d cm, Weight:%d kg.\n";
// Read the data file "file.txt", look for 'name' or 'surname' (unless NULL),
// and output line(s) to 'out' if or unless they match (depending on 'match')
scan(char *name, char *surname, _Bool match, FILE *out)
FILE *fp = fopen("file.txt", "r");
if (!fp) perror("file.txt"), exit(1);
struct Person osoba;
while (fscanf(fp, scformat, osoba.name, osoba.surname,
&osoba.age, &osoba.height, &osoba.weight) == 5
)
if ( name && strcmp(osoba. name, name) == 0 == match
|| surname && strcmp(osoba.surname, surname) == 0 == match
)
if (fprintf(out, prformat, osoba.name, osoba.surname,
osoba.age, osoba.height, osoba.weight)
< 0) perror(""), exit(1);
fclose(fp);
调用它
char name[30];
printf("Give a name or surname to find: ");
if (scanf("%29s", name) == 1)
scan(name, name, 1, stdout); // print matching lines to stdout
删除所有得到用户提供的姓氏的人...... (我正在考虑打开第二个临时文件并复制原始文件的内容,除了这些行......
你的想法是对的:
printf("Give a surname to delete: ");
if (scanf("%29s", name) == 1)
FILE *fp = fopen("file.tmp", "w");
if (!fp) perror("file.tmp"), exit(1);
scan(NULL, name, 0, fp); // print non-matching lines to tempfile
if (fclose(fp) < 0) perror("file.tmp"), exit(1);
remove("file.txt");
if (rename("file.tmp", "file.txt") != 0) perror("file.tmp");
【讨论】:
以上是关于从 txt 文件中保存、查找和删除结构的主要内容,如果未能解决你的问题,请参考以下文章
如何将更改保存到现有的 excel 文件,而不是创建包含更改的 txt 文件?
c语言 输入五个整数,保存到数组a,查找最小值,将结果以%d保存到data.txt文件中
Epic Games官方<<理解项目和文件结构>>虚幻引擎教程学习笔记