- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个函数可以按字母顺序对结构指针数组进行排序,如下所示:
void insertionSortAlpha(candidate* person[], int lo, int hi) {
candidate* insertItem;
insertItem = malloc(sizeof(candidate));
insertItem->name = malloc(25*sizeof(char));
insertItem->numVotes=malloc(sizeof(int));
int i;
for(i=lo+1; i<=hi; i++) {
insertItem = person[i];
int k = i - 1;
while (k > 0 && strcmp(insertItem->name, person[k]->name) < 0) {
person[k + 1] = person[k];
--k;
}
person[k + 1] = insertItem;
}
free(insertItem->numVotes);
free(insertItem->name);
free(insertItem);}
然后我调用该函数并像这样释放内存。名称是从文件中填充的。打印时,它总是跳过数组中第三个元素的名称和编号。它还给了我一个无效的指针错误。为什么会发生这种情况?
insertionSortAlpha(Person, 0, 9);
printf("\n\n");
printf("Sorted Alphabetically\n");
for (i=0; i<10;i++) {
printf("%s = %d votes \n", Person[i]->name, *Person[i]->numVotes);
}
for (i =0; i<10; i++) {
free(Person[i]->numVotes);
free(Person[i]->name);
free(Person[i]);
}
最佳答案
创建 MCVE ( Minimal, Complete, Verifiable Example ) 的工作量比应有的要多一些,但此代码基本上验证了我的 comment 。 :
Your assignment to
insertItem
in the loop leaks the memory allocated before the loop. I don't think you need the memory allocation or release at all in the sort function. In fact, I'm sure you don't; you free the last item that was stored ininsertItem
after the loop, which then gives you problems later when you access (and free) already freed memory.
分配单个整数的数据结构是浪费的(尤其是在 64 位机器上);它应该是结构的普通 int
成员。如果您要处理固定大小的名称,您也可以将名称放入固定大小的数组中。然而,这是一个小的改进(并且没有实现)。整数指针使得使用候选结构来存储内部数据变得不方便。我本可以使用 C99“复合文字”,例如 &(int){ 8000 }
,但这需要更多解释(并且数组不能再是 static
,并且对 new_candidate()
的调用必须修改)。
您还需要将 while
循环中的限制从 k > 0
更改为 k >= 0
;除此之外,Henrietta 仍位于列表的前面。
这是一个或多或少的最小 MCVE,其中已修复:
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct candidate
{
char *name;
int *numVotes;
} candidate;
static
void insertionSortAlpha(candidate *person[], int lo, int hi)
{
candidate *insertItem;
//insertItem = malloc(sizeof(candidate));
//insertItem->name = malloc(25 * sizeof(char));
//insertItem->numVotes = malloc(sizeof(int));
int i;
for (i = lo + 1; i <= hi; i++)
{
insertItem = person[i];
int k = i - 1;
// k > 0 --> k >= 0
while (k >= 0 && strcmp(insertItem->name, person[k]->name) < 0)
{
person[k + 1] = person[k];
--k;
}
person[k + 1] = insertItem;
}
//free(insertItem->numVotes);
//free(insertItem->name);
//free(insertItem);
}
typedef struct BaseData
{
char *name;
int numVotes;
} BaseData;
static void *emalloc(size_t size, const char *func)
{
void *vp = malloc(size);
if (vp == 0)
{
fprintf(stderr, "Failed to allocate %zu bytes of memory in %s()\n", size, func);
exit(EXIT_FAILURE);
}
return vp;
}
static candidate *new_candidate(const char *name, int votes)
{
candidate *person = emalloc(sizeof(*person), __func__);
person->name = emalloc(25, __func__);
assert(strlen(name) < 25);
strcpy(person->name, name);
person->numVotes = emalloc(sizeof(int), __func__);
*person->numVotes = votes;
return person;
}
int main(void)
{
candidate *Person[10];
static const BaseData people[] =
{
{ "Henrietta", 8000 },
{ "Eric", 5000 },
{ "Beatrice", 2000 },
{ "Diana", 4000 },
{ "Francesca", 6000 },
{ "George", 7000 },
{ "Ian", 9000 },
{ "Janice", 10000 },
{ "Adrian", 1000 },
{ "Charles", 3000 },
};
for (int i = 0; i < 10; i++)
Person[i] = new_candidate(people[i].name, people[i].numVotes);
insertionSortAlpha(Person, 0, 9);
printf("\n\n");
printf("Sorted Alphabetically\n");
for (int i = 0; i < 10; i++)
{
printf("%-15s = %6d votes\n", Person[i]->name, *Person[i]->numVotes);
}
for (int i = 0; i < 10; i++)
{
free(Person[i]->numVotes);
free(Person[i]->name);
free(Person[i]);
}
return 0;
}
示例输出:
Sorted Alphabetically
Adrian = 1000 votes
Beatrice = 2000 votes
Charles = 3000 votes
Diana = 4000 votes
Eric = 5000 votes
Francesca = 6000 votes
George = 7000 votes
Henrietta = 8000 votes
Ian = 9000 votes
Janice = 10000 votes
祝贺珍妮丝赢得选举。
关于c - 对结构体指针数组进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40500072/
这个问题已经有答案了: In C, does a pointer to a structure always point to its first member? (3 个回答) 已关闭 7 年前。
当执行第二个fscanf时,控制台停止工作。我做错了什么? 输入文件包含: 3 minsu 50 80 40 sarah 30 60 40 jason 70 80 90 代码: #define _CR
Swift 结构体是构建代码所用的一种通用且灵活的构造体。 我们可以为结构体定义属性(常量、变量)和添加方法,从而扩展结构体的功能。 与 C 和 Objective C 不同的是: 结构
我想在 javascript 中创建一个结构。我有一对信息,我想使用,例如: array[1] = new Struct(); array[1].name = "parameter-name"; ar
我不允许使用带有 in 关键字的结构,对吗?例如: struct Rect { float x,y,width,height; }; layout(location = 7) in Rect
我的结构声明的片段: struct record{ char type[4]; uint32_t data_size; uint32_t flags; uint32_t
您能否帮助我理解为什么我的 dataStruct 结构的值不是其成员之一的值? (对于simpleDataStruct结构) 我用这一行打印值: printf("dataStruct:........
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
我不确定如何在 C 中创建一个具有不同位大小的变量的结构,例如: 我想创建一个结构体,其中一个变量作为 8 位整数,一个变量作为 16 位 bool 值,一个变量作为 8 位 bool 值,一个变量作
我正在为一个项目编写一个通信协议(protocol),其中包括两个用于请求和响应的 C 结构。根据设备的设置方式,数据传输可以是请求(主模块)或响应(从模块)。 这些结构彼此非常接近。最大的区别在于请
我有以下 C 结构体,代表外部芯片中的寄存器 typedef union { // Individual Fields struct { uint8_t ELEM_1
我了解 C++,并且正在学习 C。我想将 nullptr 定义为 NULL,但是当我使用括号初始化结构时,它会导致错误并显示预期的“}”。我正在使用 Visual Studio 编译器,我的代码示例如
#include struct s { char *a1; int a; }; int main(){ struct s p={"asdv",11}; struct s p1=p;
如果将记录作为参数发送给函数,如何添加记录? struct record { char name[20]; int nr; }; void AddRecord(struct record **p_al
使用python向C语言的链接库传递数组、结构体、指针类型的数据 由于最近的项目频繁使用python调用同事的C语言代码,在调用过程中踩了很多坑,一点一点写出来供大家参考,我们仍然是使用ctype
枚举、结构体、类 注:本文为作者自己总结,过于基础的就不再赘述 ,都是亲自测试的结果。如有错误或者遗漏的地方,欢迎指正,一起学习。 1、枚举 枚举是用来定义一组通用类型的一组相关值 ,关键字enum
Swift 结构体是构建代码所用的一种通用且灵活的构造体 可以为结构体定义属性(常量、变量)和添加方法,从而扩展结构体的功能 与 C 和 Objective C 不同的是: 结构体不需要包
关于结构的快速问题: struct xint { int number; char string[12]; }; int main(int argc, char *argv[])
编辑 我发现了这个: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays 基本上,如果我有这样的东西: struc
我是一名优秀的程序员,十分优秀!