#include <stdio.h> #include <stdlib.h> struct Record { int id; int type; char data[16]; }; static int RecordCompare(const void *a, const void *b) { const struct Record *pA = (const struct Record*)a; const struct Record *pB = (const struct Record*)b; if(pA->type!=pB->type) return pA->type - pB->type; else if (pA->id !=pB->id) return pA->id - pB->id; else return 0; }
时间: 2024-03-18 12:43:55 浏览: 132
这段代码定义了一个结构体 Record,其中包含三个成员变量,分别是 id、type 和 data。同时还定义了一个 RecordCompare 函数,用于对 Record 结构体进行比较排序。该函数使用了 C 语言中的标准库函数 qsort,对传入的两个 Record 结构体指针进行比较,并返回比较结果。比较函数的规则是先按照 type 进行升序排序,如果 type 相同则按照 id 进行升序排序。如果 id 和 type 都相同,则认为两个结构体相等。
相关问题
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_RECORDS 1000 struct Employee { int id; char name[50]; char department[50]; float score; }; struct Employee records[MAX_RECORDS]; struct Employee sorted_records[MAX_RECORDS]; int num_records = 0; void create_record() { if (num_records >= MAX_RECORDS) { printf("The number of records has reached the maximum limit!\n"); return; } struct Employee new_record; printf("Please enter the employee ID: "); scanf("%d", &new_record.id); printf("Please enter the employee name: "); scanf("%s", new_record.name); printf("Please enter the employee department: "); scanf("%s", new_record.department); printf("Please enter the employee score: "); scanf("%f", &new_record.score); records[num_records] = new_record; num_records++; } void save_records() { FILE *fp; fp = fopen("records.dat", "rb"); if (fp == NULL) { printf("Failed to open file!\n"); return; } fwrite(records, sizeof(struct Employee), num_records, fp); fclose(fp); printf("Records have been saved to file successfully!\n"); } 回答并解决文件保存打开是乱码的问题
在函数save_records()中,文件打开模式应该为"wb" (写入二进制),而不是"rb" (读取二进制)。修改代码如下:
```c
void save_records() {
FILE *fp;
fp = fopen("records.dat", "wb");
if (fp == NULL) {
printf("Failed to open file!\n");
return;
}
fwrite(records, sizeof(struct Employee), num_records, fp);
fclose(fp);
printf("Records have been saved to file successfully!\n");
}
```
另外,还需要注意一下读取和写入的顺序需要一致。如果读取时使用了"rb"模式,那么保存时也应该使用"rb"模式。同理,如果读取时使用了"r"模式,那么保存时也应该使用"w"模式。
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #define MAX_POINTS 1000 // 最多监测点数 typedef struct point_record { // 监测点每次记录的数据结构体 char point_name[100]; // 监测点名称 float residual_chlorine; // 余氯值 float conductivity; // 电导率 float ph; // pH值 float orp; // ORP值 float turbidity; // 浊度值 char time[100]; //时间 } point_record; typedef struct point_set { int num_points; // point_record data[MAX_POINTS]; } point_set; void save_data(struct point_set data); // 保存数据到文件 void load_data(struct point_set* data); // 从文件加载数据 void add_point_data(struct point_set* data); // 录入某点水质数据 void modify_point_data(struct point_set* data); // 修改某点水质数据 void delete_point_data(struct point_set* data); // 删除某点水质数据 void query_water_quality(struct point_set* data); // 根据条件查询水质信息 void alarm_high_quality(struct point_set* data); // 水质超标报警显示 void disp_all_data(struct point_set* data); //显示全部数据 char* getCurrentTime() { time_t t = time(NULL); struct tm tm = *localtime(&t); char* currentTime = (char*)malloc(sizeof(char) * 20); sprintf(currentTime, "%d-%02d-%02d %02d:%02d:%02d", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); return currentTime; }解释以上代码
这段代码是一个水质监测系统的程序,主要包含以下几个功能:
1. 定义了两个结构体,分别为监测点每次记录的数据结构体和监测点集合的数据结构体。
2. 定义了一些常量,如最多监测点数。
3. 定义了一些函数,如保存数据到文件、从文件加载数据、录入某点水质数据、修改某点水质数据、删除某点水质数据、根据条件查询水质信息、水质超标报警显示、显示全部数据。
4. 定义了一个获取当前时间的函数。
这个程序可以通过调用上述函数来实现对水质监测点数据的管理,包括添加、修改、删除、查询、报警等功能。其中,每个监测点的数据包括余氯值、电导率、pH值、ORP值、浊度值和时间等信息。
阅读全文