第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

已經(jīng)把二叉樹建立并遍歷,請(qǐng)問(wèn)主函數(shù)代碼該怎么寫?我不會(huì)寫了~跪求

已經(jīng)把二叉樹建立并遍歷,請(qǐng)問(wèn)主函數(shù)代碼該怎么寫?我不會(huì)寫了~跪求

C C++
吃雞游戲 2021-12-03 11:07:56
#include<iostream>using namespace std;struct BiNode{char data;BiNode *lchild,*rchild;};class BiTree{public:BiTree(BiNode *root) //有參構(gòu)造函數(shù),初始化一顆二叉樹。{this->root=Creat();}BiNode *getroot(){return root;}~BiTree() //析構(gòu)函數(shù),釋放二叉樹{Release(root);}void PreOrder(BiNode *root); //前序遍歷void InOrder(BiNode *root); //中序遍歷void PostOrder(BiNode *root); //后序遍歷 private:BiNode *root;BiNode *Creat() //有參函數(shù)調(diào)用{char ch;cin>>ch;BiNode *root;if(ch=='#') root=NULL;else{root=new BiNode;root->data=ch;root->lchild=Creat();root->rchild=Creat();}return root;}void Release(BiNode *root) //析構(gòu)函數(shù)調(diào)用 {if(root!=NULL){Release(root->lchild);Release(root->rchild);delete root;}}};void BiTree::PreOrder(BiNode *root) //qian{if(root==NULL) return;else{cout<<root->data;PreOrder(root->lchild);PreOrder(root->rchild);}}void BiTree::InOrder(BiNode *root) //zhong{if(root==NULL) return;else{InOrder(root->lchild);cout<<root->data;InOrder(root->rchild);}}void BiTree::PostOrder(BiNode *root) //hou{if(root==NULL) return;else{PostOrder(root->lchild);PostOrder(root->rchild);cout<<root->data;}}二叉樹建立并遍歷。 主函數(shù)代碼改怎么寫? int main(){.............}
查看完整描述

3 回答

?
暮色呼如

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超9個(gè)贊

1.這個(gè)你要仔細(xì)看下Create()函數(shù)啊,根據(jù)這個(gè)函數(shù)的功能;
2.這些代碼其實(shí)都不需要參數(shù)啊,因?yàn)檫@是個(gè)類啊,最好再熟悉下類和成員的基礎(chǔ)概念,比如:
BiTree()
{
this->root=Creat();
}
就可以了,因?yàn)閞oot是類的私有數(shù)據(jù)成員,不需要出現(xiàn)在參數(shù)里面了。
最簡(jiǎn)單的主函數(shù)如下:
int main(){
BiTree theTree();
theTree.PreOrder();
theTree.Release();
return 0;
}

查看完整回答
反對(duì) 回復(fù) 2021-12-07
?
哈士奇WWW

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超6個(gè)贊

int main(){
BiNode* root;
BiTree* tree = new BiTree(root);

tree->preOrder(root);
tree->inOrder(root);
tree->postOrder(root);

delete tree;
}



查看完整回答
反對(duì) 回復(fù) 2021-12-07
?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

如下主函數(shù)調(diào)用實(shí)現(xiàn):
int main()
{
/*
BiTree theTree();
theTree.PreOrder();
theTree.Release();
*/
BiNode * root = new BiNode;
BiTree hao(root);
hao.PreOrder(root);
hao.InOrder(root);
hao.PostOrder(root);

return 0;
}



查看完整回答
反對(duì) 回復(fù) 2021-12-07
  • 3 回答
  • 0 關(guān)注
  • 457 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)