t_node.h

来自「中缀表达式改后缀表达式」· C头文件 代码 · 共 27 行

H
27
字号
// t_node.h: interface for the t_node class.
//
//////////////////////////////////////////////////////////////////////
#include<string>
using namespace std;
#if !defined(AFX_T_NODE_H__905A8DF8_144E_4C40_A278_EBBB868CF4D2__INCLUDED_)
#define AFX_T_NODE_H__905A8DF8_144E_4C40_A278_EBBB868CF4D2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class t_node  
{
public:
	string value;
    t_node *left;
    t_node *right;
public:
	t_node();
	virtual ~t_node();


};

#endif // !defined(AFX_T_NODE_H__905A8DF8_144E_4C40_A278_EBBB868CF4D2__INCLUDED_)

⌨️ 快捷键说明

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