intnode.h

来自「异质链表 的实现 实现异质链表的查找、插入、删除和遍历」· C头文件 代码 · 共 23 行

H
23
字号
// IntNode.h: interface for the CIntNode class.
//
//////////////////////////////////////////////////////////////////////

#ifndef _INTNODE_H__
#define _INTNODE_H__

#include "NodeBase.h"

class CIntNode : public CNodeBase  
{
public:
	CIntNode(int ivalue);
	virtual ~CIntNode();

	void*   Visit();
	bool    operator==(const CNodeBase* base);
private:
	int     m_iValue;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?