q******n 发帖数: 270 | 1 请各位大牛们介绍一下如何准备C/C++面试过程,除了要去Leetcode刷题外,需要看哪
些书籍。我现在的工作是写C程序。多谢了! |
g*********e 发帖数: 14401 | |
b*****a 发帖数: 70 | 3 Elements of Programming Interviews.
This book is mainly written in C++. |
g*******u 发帖数: 3948 | 4 如果是c++的话 我大体随便说几个
虚函数
多太
纯虚
虚拟继承(这个貌似很麻烦)
reference count (smart pointer)
stl: list和vector 区别
stl的algorithm 常用函数
用两个stack 模拟queue
friend class
template class 和function
字符串的 比如 const char* 和 char * const 的区别, 理解strcpy的原理,
数组和指针的区别, 字符数组 字符串的区别
overload and override
exception
c++ 三种cast |
S**I 发帖数: 15689 | 5 C还是C++?这俩区别很大。
【在 q******n 的大作中提到】 : 请各位大牛们介绍一下如何准备C/C++面试过程,除了要去Leetcode刷题外,需要看哪 : 些书籍。我现在的工作是写C程序。多谢了!
|
w**s 发帖数: 339 | 6 同意这个
【在 g*********e 的大作中提到】 : effective c++
|
l*********u 发帖数: 19053 | 7 多太,英文是什么?diamond shape inheritance?
【在 g*******u 的大作中提到】 : 如果是c++的话 我大体随便说几个 : 虚函数 : 多太 : 纯虚 : 虚拟继承(这个貌似很麻烦) : reference count (smart pointer) : stl: list和vector 区别 : stl的algorithm 常用函数 : 用两个stack 模拟queue : friend class
|
g*******u 发帖数: 3948 | 8 polymorphism 啊
【在 l*********u 的大作中提到】 : 多太,英文是什么?diamond shape inheritance?
|
l*********u 发帖数: 19053 | 9 谢谢。半路出家的,没猜出来这个 :)
【在 g*******u 的大作中提到】 : polymorphism 啊
|
g*********e 发帖数: 14401 | 10
Polypeptide
【在 l*********u 的大作中提到】 : 多太,英文是什么?diamond shape inheritance?
|
q******n 发帖数: 270 | 11 多谢各位大牛。
小结一下:
C++:
effective c++
Elements of Programming Interviews.
概念:
虚函数
多太
纯虚
虚拟继承(这个貌似很麻烦)
reference count (smart pointer)
stl: list和vector 区别
stl的algorithm 常用函数
用两个stack 模拟queue
friend class
template class 和function
字符串的 比如 const char* 和 char * const 的区别, 理解strcpy的原理,
数组和指针的区别, 字符数组 字符串的区别
overload and override
exception
c++ 三种cast
如果准备C面试,需要看什么书啊。 |
h**********k 发帖数: 105 | 12 cracking code as much as u can |