第六章 树和二叉树 6.33 int Is_Descendant_C(int u,int v)//在孩子存储结构上判断u是否v的子孙,是则返回1,否则返回0 { ?if(u==v) return 1; ?else ?{ ?if(L[v]) ?if (Is_Descendant(u,L[v]) return 1; ?if(R[v]) ?if (Is_Descendant(u,R[v]) return