gpt4 book ai didi

c++ - 无法将结构分配给结构指针

转载 作者:太空宇宙 更新时间:2023-11-04 14:48:51 25 4
gpt4 key购买 nike

所以我有这个简单的数据结构,我想打印其中的所有字符,但我不能将 n 分配给 n.next。我用 java 编程了一下,这种东西很管用。这段代码有什么问题?

#include <iostream>
using namespace std;

struct node{
char c;
struct node *next;
struct node *prev;
};

typedef struct node NODE;

void printnode(NODE n){
while(n.next){
cout << n.c;
n=n.next;
}
}

最佳答案

nNODEstruct node 但是 n.nextstruct node * 所以你不能将 n.next 分配给 n

要使其正常工作,您可以将函数参数更改为:

void printnode(NODE *n) {
while (n->next != NULL) {
cout << n->c;
n = n->next;
}
}

请注意,我们使用 -> 运算符来访问用指针指向的结构的成员。

关于c++ - 无法将结构分配给结构指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23462325/

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