gpt4 book ai didi

c++ - 在 C++ 中为树创建新结构

转载 作者:行者123 更新时间:2023-11-30 00:53:59 25 4
gpt4 key购买 nike

<分区>

我会保持简短。当我运行代码时,我输入第一个字符(例如:“k”),一切正常。第二次我输入一个字符(例如:'j')时出现错误,编译器说它在线(有注释)。请帮忙。谢谢。

代码:

struct nodeType{
char letter;
nodeType*leftNode;
nodeType*rightNode;

};
void putInNode(nodeType*n,char c){
if ((char)(n->letter) >='a' && (char)(n->letter) <='z')/* ERROR IS HERE*/
{
if(n->letter < c)
putInNode(n->leftNode, c);
else
putInNode(n->rightNode, c);
}
n->letter=c;
}
int main(){
nodeType*a=new nodeType();
char c;
do {
cin >> c;
if(c=='.')
break;
putInNode(a,c);
} while (true);
cout << a->letter << endl;

}

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