由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - embedded software engineer 如何转纯软?
相关主题
请问Leetcode LRU 的难度两个Offer, 很纠结,哪条路好
Huawei is Recruiting Embedded Firmware Engineer in San DieLRU question
求学习C++比较快速的方法问道关于LRU的题目
内推 C++ Software Engineer (3年工作经验)取代C++!Google 开发自己的编程语言Golang了 (转载)
A家onsite详细面经,求分析Goog面试挂了,回报一下本版
内推 Lab126 softwar engineersoftware engineer in northern virginia (转载)
公司主页上那种一二十项的要求,你都能满足吗?alibaba 招聘
5个自动驾驶硬件工程师职位(硅谷)北京小米科技2016招聘-射频/天线/EMC/射频软件工程师
相关话题的讨论汇总
话题: 纯软话题: c++话题: embedded话题: engineer话题: map
进入JobHunting版参与讨论
1 (共1页)
r******6
发帖数: 15
1
各位大牛讨论了Linux C 和 embedded engineer,我深有体会,感觉自己用的技术都过
时了。指针玩得转,也没有大包裹。
大牛能否给建议如何转纯软,做过的项目都是UEFI, Linux driver, BSP, 感觉和纯软
没关系,如何放简历上吸引HR? 还是现在公司招聘根本不看以前的项目?还是需要自己
除刷题外,再搞几个小项目?
刷题我都是用纯C的,能搞定中等难度, 是否需要换一种语言来刷题(python, Java...)

先谢过各位大牛了。
h*****u
发帖数: 109
2
Not sure if there are hash maps in C. Hash map is used a lot in the
interview. Maybe learn a bit of STL C++?
I used both C++ and Java for interviews. You tend to write long names in
Java, which may take too much time in board writing.
Map map = new LinkedHashMap
j*****g
发帖数: 254
3
still want to try to find your dream job.
what do you like to do? front end? back end? machine learning?
back end is algorithm, database, etc
front end is gui, lots framework and javascript and html 5
machine learning need to ask other experts, but since Alpha Go, it has
suddenly been the correct thing to invest and to try
again, for you, I guess that image processing will be the best bet
z*********n
发帖数: 1451
4
纯C得换了,因为大部分软工基本要求就是熟练掌握一门OOP语言。LZ一直用C,对OOP掌
握的如何?还有就是能否熟练使用STL。我记得当初我从C转C++,理解OOP花了一些时间
,虽然写着C++语法,但程序结构还是C的结构,也不会用STL,写出来的其实还是C。
y**********u
发帖数: 2839
5
OJ 2000, 方得始终
B********d
发帖数: 1262
6
你这是比我还难转行

.)

【在 r******6 的大作中提到】
: 各位大牛讨论了Linux C 和 embedded engineer,我深有体会,感觉自己用的技术都过
: 时了。指针玩得转,也没有大包裹。
: 大牛能否给建议如何转纯软,做过的项目都是UEFI, Linux driver, BSP, 感觉和纯软
: 没关系,如何放简历上吸引HR? 还是现在公司招聘根本不看以前的项目?还是需要自己
: 除刷题外,再搞几个小项目?
: 刷题我都是用纯C的,能搞定中等难度, 是否需要换一种语言来刷题(python, Java...)
: ?
: 先谢过各位大牛了。

B********d
发帖数: 1262
7
光会 hash map也不行啊
在C++里,unordered_map就是hash map,boost library或者C++ 11就自带了
最近看招聘都是要懂AI或者distributed system,big data storage,光刷题也不够吧

【在 h*****u 的大作中提到】
: Not sure if there are hash maps in C. Hash map is used a lot in the
: interview. Maybe learn a bit of STL C++?
: I used both C++ and Java for interviews. You tend to write long names in
: Java, which may take too much time in board writing.
: Map map = new LinkedHashMap

i*****9
发帖数: 3157
8
底层玩的熟的话,去给TPU写驱动去,需求低,但水平高的收入不低。

:各位大牛讨论了Linux C 和 embedded engineer,我深有体会,感觉自己用的技术都过
:时了。指针玩得转,也没有大包裹。
c****x
发帖数: 6601
9
现在C提供啥方便的数据结构库了没有?
以前都是 STL + C 混编,搞得不伦不类的。

.)

【在 r******6 的大作中提到】
: 各位大牛讨论了Linux C 和 embedded engineer,我深有体会,感觉自己用的技术都过
: 时了。指针玩得转,也没有大包裹。
: 大牛能否给建议如何转纯软,做过的项目都是UEFI, Linux driver, BSP, 感觉和纯软
: 没关系,如何放简历上吸引HR? 还是现在公司招聘根本不看以前的项目?还是需要自己
: 除刷题外,再搞几个小项目?
: 刷题我都是用纯C的,能搞定中等难度, 是否需要换一种语言来刷题(python, Java...)
: ?
: 先谢过各位大牛了。

f****n
发帖数: 399
10
标准的libc实际带了hashtable,不过很难用,也没有人用,都是用的别的库。
其实这个简单写写也没多难,就是个意思,我觉着白板的时候写个函数申明就行了。
纯C的筒子要转新语言,现在肯定是GOLANG了,lc也支持。

【在 h*****u 的大作中提到】
: Not sure if there are hash maps in C. Hash map is used a lot in the
: interview. Maybe learn a bit of STL C++?
: I used both C++ and Java for interviews. You tend to write long names in
: Java, which may take too much time in board writing.
: Map map = new LinkedHashMap

f****n
发帖数: 399
11
不错啊,这个方向可以研究研究。
除了google还有别的公司要写TPU的人?

都过

【在 i*****9 的大作中提到】
: 底层玩的熟的话,去给TPU写驱动去,需求低,但水平高的收入不低。
:
: :各位大牛讨论了Linux C 和 embedded engineer,我深有体会,感觉自己用的技术都过
: :时了。指针玩得转,也没有大包裹。

y**********u
发帖数: 2839
12
机会不会太多,各家不能complete,离开gg也是没去处

【在 f****n 的大作中提到】
: 不错啊,这个方向可以研究研究。
: 除了google还有别的公司要写TPU的人?
:
: 都过

r******6
发帖数: 15
13
谢大牛指点。我也想转AI,就是怕没有相关经验,这个靠刷题,估计还不行。

【在 j*****g 的大作中提到】
: still want to try to find your dream job.
: what do you like to do? front end? back end? machine learning?
: back end is algorithm, database, etc
: front end is gui, lots framework and javascript and html 5
: machine learning need to ask other experts, but since Alpha Go, it has
: suddenly been the correct thing to invest and to try
: again, for you, I guess that image processing will be the best bet

r******6
发帖数: 15
14
大牛是我们的楷模。我也是用C++, 水平很一般。大牛是如何练项目升级技能的?还是
现在就看刷题?很久没有去面试了,不知道现在的套路了。

【在 z*********n 的大作中提到】
: 纯C得换了,因为大部分软工基本要求就是熟练掌握一门OOP语言。LZ一直用C,对OOP掌
: 握的如何?还有就是能否熟练使用STL。我记得当初我从C转C++,理解OOP花了一些时间
: ,虽然写着C++语法,但程序结构还是C的结构,也不会用STL,写出来的其实还是C。

1 (共1页)
进入JobHunting版参与讨论
相关主题
北京小米科技2016招聘-射频/天线/EMC/射频软件工程师A家onsite详细面经,求分析
[招聘] 资深前端/后端开发工程师内推 Lab126 softwar engineer
Networking Software Engineer (转载)公司主页上那种一二十项的要求,你都能满足吗?
Comcast Sunnyvale Office 内推 SE, QA, DevOp, Fresh Graduat5个自动驾驶硬件工程师职位(硅谷)
请问Leetcode LRU 的难度两个Offer, 很纠结,哪条路好
Huawei is Recruiting Embedded Firmware Engineer in San DieLRU question
求学习C++比较快速的方法问道关于LRU的题目
内推 C++ Software Engineer (3年工作经验)取代C++!Google 开发自己的编程语言Golang了 (转载)
相关话题的讨论汇总
话题: 纯软话题: c++话题: embedded话题: engineer话题: map