十年網(wǎng)站開(kāi)發(fā)經(jīng)驗(yàn) + 多家企業(yè)客戶(hù) + 靠譜的建站團(tuán)隊(duì)
量身定制 + 運(yùn)營(yíng)維護(hù)+專(zhuān)業(yè)推廣+無(wú)憂售后,網(wǎng)站問(wèn)題一站解決
#includeusing namespace std;
struct node {
int data;
node *lc, *rc;
};
bool maxtop(node* root) {
bool flag = true;
if (!root)
return true;
if (root->lc) {
if (root->lc->data >= root->data)
return false;
else
flag = maxtop(root->lc);
if (flag == false)
return false;
}
if (root->rc) {
if (root->rc->data >= root->data)
return false;
else
flag = maxtop(root->rc);
if (flag == false)
return false;
}
return flag;
}
int main() {
struct node* bb = new node{1, NULL, NULL};
struct node* b = new node{10, NULL, bb};
struct node* c = new node{10, NULL, NULL};
struct node* a = new node{20, b, c};
cout<< maxtop(a);
return 0;
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧