gpt4 book ai didi

c - 将带有 glut 的点击坐标添加到 vector 的链接列表中

转载 作者:行者123 更新时间:2023-12-04 10:07:09 26 4
gpt4 key购买 nike

我想创建一个 vector 的链接列表,并在 GLUT 库的帮助下获取点击的位置并将它们附加到链接列表中。

这些是我写的结构。

typedef struct vector{int x;int y;}Vector;
typedef struct VectorList{Vector X; struct VectorList*next; }node_v;

我全局定义了一个 P vector 和 vector 链表 prev。
Vector P;
node_v * prev=NULL;

在鼠标回调函数 _mouse_CB 每次单击鼠标左键时,我想用当前的 x 和 y 值更新 P vector 并将它们附加到链表中。

这是代码的那一部分。
static void _mouse_CB(int button, int state, int x, int y)
{
if(state==GLUT_DOWN)
{
switch(button)
{
case GLUT_LEFT_BUTTON :
px=x;py=y;
P.x=x;
P.y=y;
prev=VL_new1(P);

append(&prev,P);
break;

我从 geeksforgeeks 编写的 append 函数,并在末尾添加了一个 while 循环以检查值是否正确添加,但我正在溢出。
void append(node_v** head_ref, Vector A)
{
node_v* new_node = (node_v*) malloc(sizeof(node_v));

node_v *last = *head_ref;

new_node->X.x = A.x;
new_node->X.y = A.y;
new_node->next = NULL;

if (*head_ref == NULL)
{
*head_ref = new_node;
return;
}
while (last->next != NULL)
last = last->next;
last->next = new_node;
last = *head_ref;
while(last){
printf("%d %d\n", last->X.x,last->X.y);
last = last->next;
}
return;
}

为了创建一个节点,我写了这个函数
node_v* VL_new1(Vector A){
node_v *new = (node_v*)malloc(sizeof(node_v));
if(new==NULL){exit(1);}
else{
new->X.x = A.x;
new->X.y = A.y;
new->next = NULL;
}
return new;
}

每次我运行这个程序并点击出现的窗口时,在终端上的 printf 里面的 append 函数会输出这个
-732680176 -729092496
0 -1344244448

我应该进行哪些更改才能不溢出并成功添加当前值?

最佳答案

新节点在函数 append 中创建:

node_v* new_node = (node_v*) malloc(sizeof(node_v));


指令 prev=VL_new1(P);生成一个新的列表头。每次执行代码时, prev设置和 prev的前一个内容丢失了。

在以下情况下删除:

case GLUT_LEFT_BUTTON :
px=x;py=y;
P.x=x;
P.y=y;
append(&prev,P);

注意,函数 VL_new1可调用 append , 反而:

void append(node_v** head_ref, Vector A)
{
node_v *last = *head_ref;
node_v* new_node = VL_new1(A);

if (*head_ref == NULL)
{
*head_ref = new_node;
return;
}

while (last->next != NULL)
last = last->next;
last->next = new_node;
}

关于c - 将带有 glut 的点击坐标添加到 vector 的链接列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61527670/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com