比亚迪电话面试

比亚迪电话面试,四十分钟,太难了,问的全是项目细节,一点一点跟我扣,有几个发散性问题没回答好😭😭,uu们一定要好好准备啊,比亚迪都这么难了吗😭😭😭
全部评论
我面试的岗位是 控制算法 而我专业 以及 我的项目没有一点和这个沾边的地方 也给offer
2 回复 分享
发布于 2024-09-26 14:45 辽宁
岗位很核心吧,能说一下啥岗位嘛
1 回复 分享
发布于 2024-09-26 14:42 山东
可能佬的部门比较核心,我们软测这边问的不难
点赞 回复 分享
发布于 2024-10-17 19:47 安徽
为什么我的一上来就让我选岗位,只有技术管理岗。什么都没问,我给拒了之后直接挂电话
点赞 回复 分享
发布于 2024-09-26 16:53 上海
我昨天晚上,一个小时的八股,半个小时的项目,人面完大脑空白了,今天早上还有个20分钟的面试,也问了项目和八股
点赞 回复 分享
发布于 2024-09-26 16:24 山东

相关推荐

06-22 22:50
河南大学 C++
//现有一链表的头指针 ListNode* pHead,给一定值x,//编写一段代码将所有小于x的集中于前半部分,大于x的集中于后半部分,//若链表内有x则居于中间,没有则不显示//且不能改变原来的数据相对顺序,返回重新排列后的链表的头指针。//示例 x=5//1 6 2 7 3 5 9 8  (5)-->1 2 3 5 6 7 9 8//1 6 2 7 8 5 9 3  (5)-->1 2 3 5 6 7 8 9//1 2 3 (5)-->1 2 3//6 7 8 (5)--->6 7 8//5 5 5 (5)--->5 5 5ListNode* Partition(ListNode* phead,int x){ListNode* smallhead = NULL;ListNode* smallx = NULL;ListNode* bighead = NULL;ListNode* bigx = NULL;ListNode* flaghead = NULL;ListNode* flagx = NULL;if (phead == NULL)return NULL;while (phead){if (phead->val < x){if (smallhead == NULL){smallx = phead;smallhead = smallx;}else{smallx->next = phead;smallx = smallx->next;}}else if (phead->val > x){if (bighead == NULL){bigx = phead;bighead = bigx;}else{bigx->next = phead;bigx = bigx->next;}}else{if (flaghead == NULL){flagx = phead;flaghead = flagx;}else{flagx->next = phead;flagx = flagx->next;}}phead = phead->next;}if(bigx)bigx->next = NULL;if (flaghead != NULL){if (smallhead == NULL){flagx->next = bighead;return flaghead;}else{smallx->next = flaghead;flaghead->next = bighead;return smallhead;}}else{if (smallhead == NULL){return bighead;}else{smallx->next = bighead;return smallhead;}}}
点赞 评论 收藏
分享
评论
2
4
分享

创作者周榜

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