和我一起迎接明天的太阳吧

klaus08

焦虑源于行动的匮乏

二叉树高度

二叉树高度

递归

int height(BinNode* root)
{
	if(!root)
		return 0;
	int m= height(root->lc);
	int n= height(root->rc);

	return m > n ? m+1 : n+1;
}

2333,目前就会看课本上的这一种方法,以后见到了在更吧.

posted @ 2020-02-07 15:32  klaus08  阅读(35)  评论(0编辑  收藏  举报