亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

小代碼 二叉樹之最大子樹 和子樹判斷

發布時間:2020-07-20 23:00:36 來源:網絡 閱讀:347 作者:wzdouban 欄目:編程語言

小代碼 二叉樹之最大子樹 和子樹判斷

   #include <iostream>
using namespace std;
 typedef struct node
{
    int x;
    node*lc;
    node*rc;
    node(){} 
    node(int xx){x=xx;lc=NULL;rc=NULL;}
}*BiTree;
//int ss[]={1,2,3,0,0,4,0,0,5,6,0,0,7,0,0};int si=0;
//int ss[]={1,2,-3,0,0,-4,0,0,5,-6,0,0,7,0,0};int si=0;//sum=7
int ss[]={1,2,3,0,0,4,0,0,5,-6,0,0,7,0,0};int si=0;//sum=16
BiTree Tb;
BiTree Tc;
 
 void Creat(BiTree &T)
{int d=ss[si++];
  if(d==0) T=NULL;
    else{
        T=new node(d);
        Creat(T->lc);
        Creat(T->rc);
    }
}
void print(node *root,int base)
{//nead creat new style setw(x)
if(root)
{
print(root->rc,base+1);
for(int i=0;i<base;i++)cout<<"*";
if(root->x > 0)
cout<<" "<<root->x<<endl;
else
cout<<root->x<<endl;
print(root->lc,base+1);
}
else  return;
}
int sum=0;
bool flag=false;
void maxsum(node *root)
{
if(root==NULL)return;
if(root->lc){maxsum(root->lc);root->x += root->lc->x;}
if(root->rc){maxsum(root->rc);root->x += root->rc->x;}
if(flag)
  {if(root->x > sum )sum=root->x;}
else
  {sum=root->x;flag=true;}
}
  int  sonTree(node *Tb,node *T)
{
 if(Tb)
 {
 if(Tb==T)return 1;
 return  sonTree(Tb->lc,T)+sonTree(Tb->rc,T);
 }
 else
 return 0;
}
 
 
int a[20]={0};
int b[20]={0};
int xx[20]={0};
int xi=0;
//先序遍歷
void  DLR(BiTree T)
{
    if(T)
    {
        //cout<<T->x<<' ';
        xx[xi++]=T->x;
        DLR(T->lc);
        DLR(T->rc);
    }
}
 
//中序遍歷  
void  LDR(BiTree T)
{
    if(T)
    {
        LDR(T->lc);
        //cout<<T->x<<' ';
        xx[xi++]=T->x;
        LDR(T->rc);
    }
}
//后序遍歷 
void   LRD(BiTree T)
{
    if(T)
    {
         LRD(T->lc);
         LRD(T->rc);
       // cout<<T->x<<' ';
        xx[xi++]=T->x;
    }
}
void copy(int *xx,int *ab)
{int i;
for( i=0;i<20;i++)
{ ab[i]=xx[i];
 xx[i]=0;
}
}
void clear(int *array)
{
for(int i=0;i<20;i++)
array[i]=0;
}
 

 
int match(int *a,int *b)
{
int i=0,j=0,r=0;int state=-1;cout<<b[3]<<endl;
while(a[i]!=0)
{
j=0;r=i; 
while(a[r]==b[j])
  {  
    if(a[r]==b[j])state=1;
     else      state=-1;
  if(b[j]==0)break;  
  j++;r++;
 }
i++;
}   
return state;
}
 int  sonTree2(node *Tb,node *T)
{
int f1,f2,f3;
    f1=f2=f3=0;
//DLR f1
DLR(T);copy(xx,a);
xi=0;
DLR(Tb); copy(xx,b);
 
f1=match(b,a); 
  if(f1==0)return 0;
cout<<"--------------------------------------"<<endl;
//LDR f2
 //for(int i=0;i<20;i++) { cout<<a[i]<<","<<b[i]<<endl;}
xi=0;
LDR(T);copy(xx,a);
xi=0;
LDR(Tb);copy(xx,b);
 // for(int i=0;i<20;i++) { cout<<a[i]<<","<<b[i]<<endl;}
f2=match(b,a);
if(f2==0) return f2; 
//LRD f3
 
xi=0;
LRD(T);copy(xx,a);
xi=0;
LRD(Tb);copy(xx,b);
  
f3=match(b,a);
 if(f3==0)return 0; 
 
 return f1 && f2 && f3;
 // f4 
 /********************
  1      1           1        1
5      5   6                      6
前序中序后序都匹配后 
還有一個特殊情況不是 TC->LC->x=TB->LC->x TC->RC->X=TB->RC->X
 *******************/
}
int main()
{
cout<<"-------- test 1---------------"<<endl;
     BiTree T;
     Creat(T);
         //print(T,4);
         maxsum(T);
         //cout<<"sum = "<<sum<<endl;
         //print(T,4);
cout<<"-------- test 2 Tb---------------"<<endl;
 si=0; 
 Creat(Tb);
       // print(Tb,4);
cout<<"-------- test 2  Tb,T---------------"<<endl;
        Tb->rc=T;
        //print(Tb,4);
       // cout<<sonTree(Tb,T)<<endl;
cout<<"-------- test 3---------------"<<endl;
 si=0; 
 Creat(Tc);
       // print(Tc,4);
cout<<"-------- test 3   Tc,T---------------"<<endl;
//cout<<sonTree(Tb,Tc)<<endl;
cout<<"-------- test 3   Tb---------------"<<endl;
//Tb->lc=Tc;
//print(Tb,4);
//cout<<sonTree(Tb,Tc)<<endl;
cout<<"-------- test 4   Tb---------------"<<endl;
//cout<<sonTree(Tb,Tc->lc)<<endl; //0
cout<<sonTree2(Tb,Tc->lc)<<endl;//1
//cout<<sonTree2(Tb,Tc->rc)<<endl;//1 must 0;
    return 0;
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

茶陵县| 定安县| 南昌市| 河池市| 台北县| 隆安县| 石城县| 酉阳| 安塞县| 湖南省| 北安市| 吴旗县| 芜湖市| 建水县| 汪清县| 玉林市| 尼勒克县| 上饶县| 扎囊县| 门源| 光山县| 个旧市| 射阳县| 齐河县| 辉县市| 浦县| 龙游县| 建德市| 安溪县| 东明县| 宁阳县| 大安市| 平阴县| 和田县| 康定县| 新安县| 镇宁| 蚌埠市| 常州市| 甘德县| 永福县|