由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - one more c++ question
相关主题
【C++算法求助】有个O(n*n)的算法不知道该怎么优化并且并行化计算请教大家一个问题 (转载)
node现在还行么?用的地放多不多?c++ linking problem
算法题一个请教一个MS Linked List的问题
Reversing a singly linked listexe file compild by C++ cannot be run by another computer
In java, how do you delete a node in a linked list?C++编译的问题
question about mockReally Stupid Question: How to run VC++ 2008 Express (转载)
linked list vs Binary tree一个奇怪的library linking问题(c++, boost.python, shared li (转载)
[合集] 一个数据结构问题VC2005 C++ link error help
相关话题的讨论汇总
话题: node话题: linkedlist话题: class话题: newelement话题: c++
进入Programming版参与讨论
1 (共1页)
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
8
没想到大家都准备得那么充分啊
1 (共1页)
进入Programming版参与讨论
相关主题
VC2005 C++ link error helpIn java, how do you delete a node in a linked list?
调用win32 DLL的问题question about mock
请问C++标准linked list vs Binary tree
问几个C++的题[合集] 一个数据结构问题
【C++算法求助】有个O(n*n)的算法不知道该怎么优化并且并行化计算请教大家一个问题 (转载)
node现在还行么?用的地放多不多?c++ linking problem
算法题一个请教一个MS Linked List的问题
Reversing a singly linked listexe file compild by C++ cannot be run by another computer
相关话题的讨论汇总
话题: node话题: linkedlist话题: class话题: newelement话题: c++