由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一个C++问题
相关主题
white board coding的时候如果遇到hash tablegoogle 一题
BST的insertiongoogle phone interview
急!google 一面。请大侠看看sorted linked list里insert一个node
[合集] 几个面试中碰到的问题Zillow screen 面经,兼打听工资
C++ template最近没有什么新题
C++ Q42: (C22)一道设计题
请教一个phone interview 问题Mathworks is hiring! job #10319 - C++ Developer – Compile
BST insertion请教一个数据结构题
相关话题的讨论汇总
话题: bst话题: int话题: insert话题: c++话题: main
进入JobHunting版参与讨论
1 (共1页)
g********l
发帖数: 68
1
如下定义的insert函数,我该怎么在main()里面调用呢?
怎么编译总出错。谢谢。
template
class BST {
public:
void insert(const T &el) {}
};
int main()
{
BST bst;
bst.insert(10); ????
}
M7
发帖数: 219
2
bst.insert(10);

【在 g********l 的大作中提到】
: 如下定义的insert函数,我该怎么在main()里面调用呢?
: 怎么编译总出错。谢谢。
: template
: class BST {
: public:
: void insert(const T &el) {}
: };
: int main()
: {
: BST bst;

g********l
发帖数: 68
3
试了,不可以呀

【在 M7 的大作中提到】
: bst.insert(10);
M7
发帖数: 219
4
// this is my code, g++ compiles it with no problem.
template
class BST {
public:
void insert(const T& el) {}
};
int main() {
BST bst;
bst.insert(10);
return 0;
}
// what is your error message?

【在 g********l 的大作中提到】
: 试了,不可以呀
g********l
发帖数: 68
5
的确可以啊。我函数里面出问题了。
经你提醒找出来了。
非常谢谢

【在 M7 的大作中提到】
: // this is my code, g++ compiles it with no problem.
: template
: class BST {
: public:
: void insert(const T& el) {}
: };
: int main() {
: BST bst;
: bst.insert(10);
: return 0;

1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一个数据结构题C++ template
Compiler/C++ position @MathworksC++ Q42: (C22)
一道STL面试题请教一个phone interview 问题
C++问题BST insertion
white board coding的时候如果遇到hash tablegoogle 一题
BST的insertiongoogle phone interview
急!google 一面。请大侠看看sorted linked list里insert一个node
[合集] 几个面试中碰到的问题Zillow screen 面经,兼打听工资
相关话题的讨论汇总
话题: bst话题: int话题: insert话题: c++话题: main