node.h
来自「是当初的数据结构的做业,用的是b+树这一块,非常值得初学者的参考」· C头文件 代码 · 共 29 行
H
29 行
// Node.h: interface for the Node class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_NODE_H__CB5AE2DE_6289_4FB4_B442_2D5F1604C55A__INCLUDED_)
#define AFX_NODE_H__CB5AE2DE_6289_4FB4_B442_2D5F1604C55A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Node
{
public:
CPoint lpoint;
CPoint clpoint;
CPoint rlpoint;
CPoint rpoint;
CPoint toppoint;
public:
Node();
virtual ~Node();
};
#endif // !defined(AFX_NODE_H__CB5AE2DE_6289_4FB4_B442_2D5F1604C55A__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?