📄 qnode.h
字号:
// used by bbloadc.cpp
#ifndef QNode_
#define QNode_
template<class T>
class QNode {
friend void AddLiveNode(LinkedQueue<QNode<T>*> &, T,
int, int, T, QNode<T> *, QNode<T> *&, int *, bool);
friend T MaxLoading(T *, T, int, int *);
private:
QNode *parent; // pointer to parent node
bool LChild; // true iff left child of parent
T weight; // weight of partial solution
// defined by path to this node
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -