h*****g 发帖数: 312 | 1 小弟过几天电面,请教2个问题:
1. 把code 只写成下面这样可以吗?有没有必要写全?比如:没写#include<>...等
例题: implement a function to check if a tree is balanced or not.
int maxDepth(Tree * root) {
if(!root) {
return 0;
}
return 1+max(maxDepth(root->left),maxDepth(root->right));
}
int minDepth(Tree * root) {
if(!root) {
return 0;
}
return 1+min(minDepth(root->left),minDepth(root->right));
}
bool isBalanced(Tree * root) {
return maxDepth(root)-minDepth(root)<=1;
}
########################################### | g*****u 发帖数: 298 | 2 每个人面试风格不同,有的很挑剔,尽量别犯错吧
比如参数如果是指针,尽量写const等等
不管申请什么,面试都一样的。各个方面都要看。 |
|