I'm super new to C++.
I have to do a parser. Take a an input like "34+5-(9*8)" and insert it on a binary tree. My idea is compare every character in the string and determine if the character is a number or a simbol (+, -, *, /, etc) and insert it into a queue to use postfix notation and then insert it on the binary tree
What i want is ask the user to input the string, split the string into characters and then compare
something like
#include <iostream>
#include <string>
using namespace std;
string cadena;
string numero;
int i;
int main(){
cout<< "Type String";
cin>> cadena;
for (i=0; i<cadena.length(); i++){
switch(cadena[i]{
case "0":
case "1":
case "2":
...
case "9":
numero+=cadena[i];
}
cout << numero<<endl;
numero="";
}
return 0;
}
But the compiler complains i can't compare the current char (cadena[i]) with my string ("0").
Can somebody give me an idea of what to do?
I already have tried using char instead std:string, read other questions, etc.
int isdigit( int ch );– Karoly Horvath Mar 2 '12 at 18:52