Write Java code to count number of nodes in a binary tree
Write Java code to count number of nodes in a binary tree
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
标签: interviewbit, data-structure, topic-specific, data-structures, algorithms
参考答案摘要
int countNodes(Node root) { int count = 1; //Root itself should be counted if (root ==null) return 0; else { count += countNodes(root.left); count += countNodes(root.right); return count; } }
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。