m*******o 发帖数: 264 | 1 Consider the following C++ program declarations for a linked-list class:
class Node {
friend class LinkedList;
int value;
Node* next;
Node() {next = 0;}
}
class LinkedList {
Node* head;
Public:
LinkedList() { head = 0; }
bool addElement(Node * newElement);
...
}
An instance of class LinkedList is to be used to maintain a sorted list.
Write function LinkedList::addElement(Node * newElement) which inserts
newElement into the linked list at the appropriate location and returns
false |
d*******d 发帖数: 2050 | 2 这个题很一般啊,好像没什么tricky啊?你要问什么?
【在 m*******o 的大作中提到】 : Consider the following C++ program declarations for a linked-list class: : class Node { : friend class LinkedList; : int value; : Node* next; : Node() {next = 0;} : } : class LinkedList { : Node* head; : Public:
|
t****t 发帖数: 6806 | 3 对于这种直接贴题的我都忽略
【在 d*******d 的大作中提到】 : 这个题很一般啊,好像没什么tricky啊?你要问什么?
|
s******e 发帖数: 285 | 4 这些都是Knight Capital Group的Electronic Trading Group
的Developer candidate screening questions吧。
人家都说了要你自己做了。Please keep them PRIVATE。
Consider the following C++ program declarations for a linked-list class:
class Node {
friend class LinkedList;
int value;
Node* next;
Node() {next = 0;}
}
class LinkedList {
Node* head;
Public:
LinkedList() { head = 0; }
bool addElement(Node * newElement);
...
}
An instance of class LinkedList is to be used to maintain a sorted list.
Write function Li
【在 m*******o 的大作中提到】 : Consider the following C++ program declarations for a linked-list class: : class Node { : friend class LinkedList; : int value; : Node* next; : Node() {next = 0;} : } : class LinkedList { : Node* head; : Public:
|
t****t 发帖数: 6806 | 5 倒也不一定是那里的题, 类似的题在网上很久了.
【在 s******e 的大作中提到】 : 这些都是Knight Capital Group的Electronic Trading Group : 的Developer candidate screening questions吧。 : 人家都说了要你自己做了。Please keep them PRIVATE。 : : Consider the following C++ program declarations for a linked-list class: : class Node { : friend class LinkedList; : int value; : Node* next; : Node() {next = 0;}
|
s******e 发帖数: 285 | 6 他问的两题都是一模一样的screening questions。
我前几天刚刚做过,赫赫。一个小的hedge fund。
【在 t****t 的大作中提到】 : 倒也不一定是那里的题, 类似的题在网上很久了.
|
S*********g 发帖数: 5298 | 7 都是经典书目里的经典内容
【在 t****t 的大作中提到】 : 对于这种直接贴题的我都忽略
|
m*******o 发帖数: 264 | |