?? cnode.h
字號:
// file cnode.h
#ifndef ChainNode_
#define ChainNode_
#include "stdafx.h"
template <class T> class Chain;
template <class T> class ChainIterator;
template <class T> class KeyedChain;
template <class T> class LinkedStack;
template <class T>
class ChainNode {
friend Chain<T>;
friend ChainIterator<T>;
friend KeyedChain<T>;
friend LinkedStack<T>;
private:
T data;
ChainNode<T> *link;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -