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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

關(guān)于searchnode函數(shù)的一點解析,這里想了好長時間才轉(zhuǎn)過來!

?

Node *Node::SearchNode(int nodeindex)

{

? ? if(this->index==nodeindex)//查找當(dāng)前節(jié)點

? ? ? ? return this;?

? ? if(this->pLChild!=NULL)//查找左子節(jié)點

? ? {

? ? ? ? if(this->pLChild->index==nodeindex)

? ? ? ? ? ? return this->pLChild;?

else if (this->pLChild->SearchNode(nodeindex))

return this->pLChild->SearchNode(nodeindex);


else//查找右子節(jié)點

{

if(this->pRChild!=NULL)

{

if(this->pRChild->index==nodeindex)

return this->pRChild;

if(this->pRChild->SearchNode(nodeindex))

return this->pRChild->SearchNode(nodeindex);

}

}

? ? }

? ? return NULL;

}

其實最簡單的方法就是仿照遍歷函數(shù),搜索只是多了一個限定條件;

這里searchnode函數(shù)的返回值是node類型;

只能有一個return null ;

正在回答

2 回答

我覺得這代碼有問題吧,視頻中刪除的最右邊那個節(jié)點,按照這個搜尋方法,當(dāng)遍歷到最左邊這個節(jié)點時,此時this指的是最左邊的指針,這樣他肯定不會進(jìn)入第二個if語句

0 回復(fù) 有任何疑惑可以回復(fù)我~

well


0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報

0/150
提交
取消

關(guān)于searchnode函數(shù)的一點解析,這里想了好長時間才轉(zhuǎn)過來!

我要回答 關(guān)注問題
微信客服

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

幫助反饋 APP下載

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

公眾號

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