s***n 发帖数: 442 | 1 1.How are virtual functions different from normal class functions?
2.Write a function that returns the 5th element from the end of a singly
linked list. Make your solution as optimal as possible. Provide a set of
test cases against that function.
求高手给个答案,,好东西大家分享嘛.
有包子我就给了 | s***n 发帖数: 442 | 2 1. 是不是就说virtual function 和override的区别?
2. 只能想到用extra space 存储连续的5个element,到链表结束的时候,再取最开始的
一个.. 有没有其他的比较好的方法? | l******4 发帖数: 729 | 3 第二个,是个老题儿了。
不过我也不知道正确答案。明天第一个电面。
现找到第5个,然后用另一指针指第一个。然后每次都挪一位。不过觉得这样做和重新遍历一边没区别。 |
|