/calc_expression

Evaluates mathmatical expression from text file

Primary LanguageC++

Evaluate expression

🚀 Whow to run this project?

  1. Fetch project

    Use git to fetch project on you local machine.

    git clone git@github.com:lsarkisov/calc_expression.git
  2. Start runing project.

    Just fallow these commands:

    cd <calc_expression_dir>/
    make && make run

🧐 Crucial files?

Pleas, look on test.txt file in root directory. Fill free to change expression in it.

.
├── README.md
├── main.cpp
├── src
│   ├── binary-expression-builder.cpp
│   ├── binary-expression-builder.h
│   ├── binary-operation-node.cpp
│   ├── binary-operation-node.h
│   ├── expression-element-node.h
│   ├── numeric-element-node.cpp
│   ├── numeric-element-node.h
│   └── run.cpp
└── test.txt