📄 node.h
字号:
#ifndef NODE_H_
#define NODE_H_
#include<iostream>
using namespace std;
template<class Node_entry>
struct Node
{
Node_entry entry;
Node<Node_entry> *next;
Node();
Node(Node_entry item,Node<Node_entry> *link=NULL);
};
template <class Stack_entry>
Node<Stack_entry>::Node()
{
next=NULL;
}
/****************************************************************/
template <class Stack_entry>
Node<Stack_entry>::Node(Stack_entry item,Node<Stack_entry> *link)
{
entry=item;
next=link;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -