⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eval.hpp

📁 building parser with C++ functions
💻 HPP
字号:
/** * \file eval.hpp * * Encapsulates the interface for the expression evaluator function. */#ifndef EVAL_HPP#define EVAL_HPP#include "cons.hpp"using namespace std;/** * \brief Evaluate the expression tree whose root is pointed to by c * (error if c does not hold a well-formed expression). * * \return The value resulting from evaluating the expression. */Cell* eval(Cell* const c);#endif // EVAL_HPP

⌨️ 快捷键说明

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