阳光电源-Java

全程40分钟,两个面试官。
项目上的难点
HashMap的使用场景
用过那些锁
MySQL有哪些锁
Redis的为什么快
linux常用命令
实验室的项目
其他的记不清了

无手撕,强度最小的一集
全部评论
简历还在评估是不是挂了
1 回复 分享
发布于 2024-09-06 10:29 江苏
收藏了
1 回复 分享
发布于 2024-09-05 23:44 陕西
我面了一个小时,然后还只有一个面试官 神奇
点赞 回复 分享
发布于 2024-09-30 23:44 安徽
简历挂了
点赞 回复 分享
发布于 2024-09-30 15:47 湖南
哥,面试怎么样,线上的
点赞 回复 分享
发布于 2024-09-21 16:01 安徽
oc了嘛佬
点赞 回复 分享
发布于 2024-09-20 09:32 贵州
有手撕吗?
点赞 回复 分享
发布于 2024-09-10 17:16 河北
9.5投的到现在没有后续
点赞 回复 分享
发布于 2024-09-09 13:58 山东
佬,我今天面的,为什么就面了20分钟
点赞 回复 分享
发布于 2024-09-08 12:19 陕西
佬面的是那个城市的?八股问的多吗
点赞 回复 分享
发布于 2024-09-07 14:59 辽宁
一共有几面呢
点赞 回复 分享
发布于 2024-09-05 18:38 新疆

相关推荐

昨天 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 5 ListNode* 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;        }    }}
点赞 评论 收藏
分享
评论
8
18
分享

创作者周榜

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