• Stars
    star
    1
  • Language
    C++
  • Created about 2 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Given an expression of binary operators as input in the character array, you are required to design a solution in C++ for converting that expression in prefix, postfix and then evaluating that expression. Also you will check its validity (correct use of brackets and operators). The intend is for the given input expression in character array 1. Check validity of the expression 2. Convert to Prefix expression 3. Convert to Postfix expression 4. Evaluate the given expression