gpt4 book ai didi

c++ - 链表箭头运算符

转载 作者:行者123 更新时间:2023-11-30 18:41:55 25 4
gpt4 key购买 nike

在基本的链表程序中,我通常会实现它:

struct node {
int info;
struct node * next;
};

int main() {
struct node * head = malloc(sizeof(node)*3); //for 3 nodes
head->info = 1;
head->next->info = 2;
head->next->next->info = 3;
//more code
}

现在,要打印第二个节点的内容,我使用以下语句:

cout<<head->next->info;

我的问题是,除了使用上面的语句之外,是否可以使用以下语句:

cout<<head[1]->info;

最佳答案

My question is, instead of using the above statement, can the following be used:

cout<<head[1]->info;

就您的情况而言,实际上,,因为您的代码不会创建链接列表,而更像是一个数组。一个数组,其中每个元素显然应该有一个指向下一个元素的指针 next,但所有这些指针都未初始化。

使用std::list直到你知道链表是​​如何工作的......然后继续使用它!

关于c++ - 链表箭头运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19477576/

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