小米一面面经
自我介绍
介绍项目
map底层以及其插入一个元素的过程
手撕观察者模式
算法题:判断链表中是否有环及环的入口点
介绍项目
map底层以及其插入一个元素的过程
手撕观察者模式
算法题:判断链表中是否有环及环的入口点
全部评论
老哥北京的岗位吗
请问是整车底层软开吗
请问一面完有结果了嘛 我看有人说一面完就约了二面
请问什么岗位呀
相关推荐
查看23道真题和解析 点赞 评论 收藏
分享
昨天 10:17
门头沟学院 Java 明天不下雨了:小林Coding:https://xiaolincoding.com/
全栈哥:https://www.pdai.tech/
Guide哥:https://javaguide.cn/
秀哥:https://interviewguide.cn/
沉默王二:https://javabetter.cn/home.html
磊哥:https://www.javacn.site/interview/basic/
小傅哥:https://bugstack.cn/
源码哥:https://doocs.github.io/source-code-hunter/#/
各大厂的公众号技术文章和一些经典的书籍
点赞 评论 收藏
分享
球球与墩墩:这不是前端常考的对象扁平化吗,面试官像是前端出来的
const flattern = (obj) => {
const res = {};
const dfs = (curr, path) => {
if(typeof curr === 'object' && curr !== null) {
const isArray = Array.isArray(curr);
for(let key in curr) {
const newPath = path ? isArray ? `${path}[${key}]` : `${path}.${key}` : key;
dfs(curr[key], newPath);
}
} else {
res[path] = curr
}
}
dfs(obj);
return res;
}
查看3道真题和解析 点赞 评论 收藏
分享
牛客96609213...:疯狂背刺,之前还明确设置截止日期,还有笔试,现在一帮人卡在复筛,他反而一边开启扩招,还给扩招的免笔试,真服了,你好歹先把复筛中的给处理了再说 点赞 评论 收藏
分享