gpt4 book ai didi

c - Trie 数据结构

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

我正在做一个尝试,我需要有人告诉我这段代码有什么问题:

typedef struct node
{
struct node *letters[26]={0};

} node;

我想让它在节点结构的每个引用中,指针都是空的......非常感谢您的帮助 :) 谢谢

最佳答案

你不能初始化一个类型。只能初始化对象

typedef struct node {
struct node *letters[26];
} node;

node mynode = {0}; /* {{0}} or even {{0, 0, 0, 0, ...}} */

关于c - Trie 数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6430730/

25 4 0
文章推荐: c - 稀疏矩阵问题(我的scan_matrix函数有问题)
文章推荐: css - 如何设置背景图像大小 = 100% 或拉伸(stretch)到完整的
文章推荐: c++ - 二维指针初始化
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com