由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 面试时tree和链表的node类的成员应写成私有还是公有
相关主题
binary tree, sum of 2 nodes == given numberPopulating Next Right Pointers in Each Node II
amazon一道面试题一个小面筋
请教PIE里面的linkedlist的一个小白问题sort list java solution
问一道二叉树遍历的问题? 谢谢!问道题,binary tree里有一个有indegree 2
攒个人品发碗F家面筋Lowest common ancestor of two nodes of Binary Tree
问道G家的面试题。L家这题咋搞,巨变态
一道题:2个BST,按大小顺序打印两棵树的所有节点一个基本的string问题
几道F家面试题问个算法题
相关话题的讨论汇总
话题: node话题: class话题: item话题: next话题: 私有
进入JobHunting版参与讨论
1 (共1页)
b********e
发帖数: 215
1
for example;
tempalte
class Node
{
public:
T data;
Node *next;
Node(const T &item,Node *n):data(item),next(n)
}
还是:
tempalte
class Node
{
private:
T data;
Node *next;
public:
getData;
setData;
getNext;
setNext;
Node(const T &item,Node *n):data(item),next(n)
}
一般来说成员变量应写成私有的,但像这种简单的类,面试时有必要写成私有的吗?
z****e
发帖数: 2024
2
面试时根本没有必要写一个类。
一般就写个函数。除非是takehome。
P*******b
发帖数: 1001
3
我感觉也是,何况lz还是个模板类

【在 z****e 的大作中提到】
: 面试时根本没有必要写一个类。
: 一般就写个函数。除非是takehome。

g*****a
发帖数: 1457
4
public 就可以了,主要focus在algorithm. 用class可以,但是我觉得没有必要用
template,用void pointer 就可以了
h****8
发帖数: 599
5
基本上一切数据成员都应该为private,然后写个accessor和mutator
1 (共1页)
进入JobHunting版参与讨论
相关主题
问个算法题攒个人品发碗F家面筋
请问一道题问道G家的面试题。
包子求大牛:C++的list iterator实现一道题:2个BST,按大小顺序打印两棵树的所有节点
请教如何实现图的数据结构C++几道F家面试题
binary tree, sum of 2 nodes == given numberPopulating Next Right Pointers in Each Node II
amazon一道面试题一个小面筋
请教PIE里面的linkedlist的一个小白问题sort list java solution
问一道二叉树遍历的问题? 谢谢!问道题,binary tree里有一个有indegree 2
相关话题的讨论汇总
话题: node话题: class话题: item话题: next话题: 私有