سلام این الگوریتم infix to postfix ، ولی نمیدونم چرا کپی میکنم چپکی میشه ؟؟!!
#include <iostream> #include <string> #define DEFAULT_SIZE 100 using namespace std; class Stack{ private: char *array; int tos, capacity; public: //constructors Stack(); //Destructor...