练习数据结构的时候发现求二叉树高度的时候用L++和R++,返回的数值是0,而用L+1和R+1能返回正确的数值,这是为什么呢
int TreeDepth(TreeNode* pRoot) {
if (pRoot == NULL) {
return 0;
}
int L = TreeDepth(pRoot->lchild);
int R = TreeDepth(pRoot->rchild);
return L > R ? L+1 : R+1; //能正确返回高度
}
int TreeDepth(TreeNode* pRoot) {
if (pRoot == NULL) {
return 0;
}
int L = TreeDepth(pRoot->lchild);
int R = TreeDepth(pRoot->rchild);
return L > R ? L+1 : R+1; //不能正确返回高度
//注意不能用 return L > R ? L++ : R++;原因暂时不明
}