- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:我不能使用“.”和图表上的“->”运算符。这就是我使用这些宏的原因。
对于以下图形声明(我无法更改 - 赋值,所以请不要问我任何相关问题),
#include <stdio.h>
#include <stdlib.h>
#define TAG(vp) ((vp)->tag)
#define LABEL(vp) ((vp)->label)
#define EDGE(vp) ((vp)->edge)
typedef struct vertex
{
char tag; /* can be used for any puproses; haven't used though */
char *label;
struct vertex *edge[1];
}
vertex, *vp;
我编写了以下结构和函数来为图创建邻接列表。
typedef struct adjList
{
vp node;
struct adjList *next;
}
adjList;
void createList (adjList *list, vp graph, int *place) /* place stores an index in an array of adjacency lists */
{
int i, temp = *place;
adjList *ptr;
if (graph)
{
list[temp].node = graph;
list[temp].next = NULL;
if (EDGE (graph))
{
ptr = list[temp].next;
for (i = 0; EDGE (graph)[i]; ++i)
{
ptr = malloc (sizeof (adjList));
ptr->node = EDGE (graph)[i];
ptr = ptr->next;
}
}
++(*place);
list = realloc (list, sizeof (adjList) * (*place + 1));
for (i = 0; EDGE (graph)[i]; ++i)
{
createList (list, EDGE (graph)[i], place);
}
}
}
使用这个 main 时,我遇到了段错误。
int main()
{
int i;
int *temp = malloc (sizeof (int));
adjList *list, *ptr;
vp test;
*temp = 0; /* temp is an index starting from 0 */
test = malloc (sizeof (*test) + 4 * sizeof (vp));
list = malloc (sizeof (adjList));
LABEL (test) = malloc (sizeof (char));
LABEL (test)[0] = 'a';
for (i = 0; i < 3; ++i)
{
EDGE (test)[i] = malloc (sizeof (vertex));
}
LABEL (EDGE (test)[0]) = malloc (sizeof (char));
LABEL (EDGE (test)[0])[0] = 'b';
LABEL (EDGE (test)[1]) = malloc (sizeof (char));
LABEL (EDGE (test)[1])[0] = 'c';
LABEL (EDGE (test)[2]) = malloc (sizeof (char));
LABEL (EDGE (test)[2])[0] = 'd';
EDGE (EDGE (test)[0])[0] = NULL;
EDGE (EDGE (test)[1])[0] = NULL;
EDGE (EDGE (test)[2])[0] = NULL;
EDGE (test)[3] = NULL;
printf ("%d\n", sizeof (EDGE (test)) / sizeof (vp));
createList (list, test, temp);
list = realloc (list, sizeof (adjList) * (*temp));
printf ("%c\n", LABEL (test)[0]);
printf ("%d\n", (test == list[0].node));
for (ptr = list; ptr; ptr = ptr->next)
{
printf ("%c ", LABEL (ptr->node)[0]);
}
printf ("\n");
return 0;
}
在调试它时,我发现创建邻接列表的函数甚至没有在“adjList”结构中存储指针。也许我没有正确分配内存。任何一点帮助将不胜感激。
提前致谢。
最佳答案
在 Mac OS X 上运行,我收到消息:
graph(70806) malloc: *** error for object 0x7fb211c03b20: pointer being realloc'd was not allocated
使用这个带注释的 createList()
函数版本:
static
void createList (adjList *list, vp graph, int *place) /* place stores an index in an array of adjacency lists */
{
int i, temp = *place;
adjList *ptr;
if (graph)
{
printf("-->> %s()\n", __func__);
list[temp].node = graph;
list[temp].next = NULL;
if (EDGE (graph))
{
ptr = list[temp].next;
for (i = 0; EDGE (graph)[i]; ++i)
{
ptr = malloc (sizeof (adjList));
ptr->node = EDGE (graph)[i];
ptr = ptr->next;
}
}
++(*place);
printf("About to realloc() in createList()\n");
list = realloc (list, sizeof (adjList) * (*place + 1));
printf("Back from realloc() in createList()\n");
for (i = 0; EDGE (graph)[i]; ++i)
{
printf("Recursing in createList\n");
createList (list, EDGE (graph)[i], place);
printf("Back from recursive createList\n");
}
printf("<<-- %s()\n", __func__);
}
}
运行的输出是:
1
-->> createList()
About to realloc() in createList()
Back from realloc() in createList()
Recursing in createList
-->> createList()
About to realloc() in createList()
Back from realloc() in createList()
<<-- createList()
Back from recursive createList
Recursing in createList
-->> createList()
About to realloc() in createList()
graph(70904) malloc: *** error for object 0x7fefca403b20: pointer being realloc'd was not allocated
*** set a breakpoint in malloc_error_break to debug
问题在于createList()
重新分配传入的list
,但无法告诉调用代码新列表的地址。您需要修改 createList()
以返回新列表,或者安排将 adjList **list
传递到函数中 - 无论哪种情况,都会进行相应的更改.
关于C:图中的邻接列表 - 段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16885861/
我在 ma 应用程序中使用 Jqgrid 树 View 模型,我可以看到它显示错误,因为不支持对象或属性我已经包含了 grid.Treeview.js 和其他 Jqgrid 脚本文件。我不知道可能是什
我正在尝试使用图中所示的符号在 matlab 上实现 Freeman Chain Code [4 adjacency]: 我的代码为我测试过的多个小矩阵提供了正确的链码。但是,当我在我的实际图像文件上
我有一张表,其中包含世界上所有地理位置及其关系的位置。 这是一个显示层次结构的示例。你会看到数据实际上存储为所有三个 枚举路径 邻接表 嵌套集 数据显然也不会改变。下面是英格兰布莱顿位置的直系祖先示例
我正在尝试从邻接树模型(id、parent_id)中的 MySQL 数据库中计算/创建或生成 PHP 目录。到目前为止,这是我在回显输出时所取得的成就。 1. Category 1 1 Subc
我知道 std::vector在内部连续存储它的数据(除非它是 std::vector )都在旧的 C++03 中标准和新的C++11 . 处理此问题并引用标准的好 stackoverflow 问题:
Development language and DB: PHP/MySQL 我有一张 geo_places 表,其中包含大约 800 万个地理位置。 这些地方都是分层次的,我用 parent_id
过去几个小时我一直在尝试在网上找到这个问题的解决方案。我找到了很多关于如何从嵌套集合转换为邻接的例子......但很少有相反的例子。我发现的示例要么不起作用,要么使用 MySQL 过程。不幸的是,我不
我是一名优秀的程序员,十分优秀!