本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
记一次面试
今天参加了一个phone interview,有几道题自己还记着。
1. c++析构函数为啥是虚函数。
2. 四个cast。
3. 类初始化列表。编译器为什么要按照声明中的顺序初始化?
4. 一个空类,编译器帮你实现了哪些default的函数。
4. IQ题。假设三个事件A,B,C,给你两枚硬币,如果根据扔硬币的结果得到独立概率的一件事情。
How to generate permutations
The following algorithm generates the next permutation lexicographically after a given permutation. It changes the given permutation in-place.
Find the largest index
k
such that
a ...
How to delete a node in a LinkList ?
If only given the pointer to the node to be deleted? Note the node is not the first one nor the last.
如果在单链表中删除一个指定的结点? 需要注意的是不是头尾结点。
这到题其实就是个小技巧,没有告诉前面的一个结点怎么做删除呢?答案就是把后面结点的内容拷贝过来!这个问题的前提是结点不能 ...
用两个栈实现一个队列的功能?
用两个栈,栈A作为入队,栈B作为出队。
enqueue(){
将入队数据压到A的栈顶;
}
dequeue(){
if B 为空;
if A 不为空;
弹出A数据到B中,然后弹出B的一个数据作为出队数据;
else
队列空;
else
弹出B的一个数据作为出 ...