题解 | #二叉树的深度#

二叉树的深度

http://www.nowcoder.com/practice/435fb86331474282a3499955f0a41e8b

/**

  • struct TreeNode {
  • int val;
  • struct TreeNode *left;
  • struct TreeNode *right;
  • }; / /*
  • 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
  • @param pRoot TreeNode类
  • @return int整型 / int TreeDepth(struct TreeNode pRoot ) { // write code here if (!pRoot) return 0; int lval = TreeDepth(pRoot->left); int rval = TreeDepth(pRoot->right); return max(lval, rval) + 1; } int max(int m,int n){ if(m>n) return m; return n; }
全部评论

相关推荐

点赞 评论 收藏
分享
纠结的无尾熊天天摸鱼:跟我完全一样的烂大街项目 面了十几家公司给我的感受就是非大厂的话对27届要求没有特别高,把简历上的东西背熟LeetCode也刷了这么多其实很容易就找到实习了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务