- Joined
- 1/21/19
- Messages
- 313
- Points
- 138
Hi ,
'
I am trying to compile the following code ,
I get the following error ,
Invalid operands to binary expression ('std::unordered_map<char, char>::iterator' (aka '__hash_map_iterator<__hash_iterator<std::__hash_node<std::__hash_value_type<char, char>, void *> *>>') and 'std::basic_string<char>::iterator' (aka '__wrap_iter<char *>'))
I think I am comparing the wrong iterators in the "if" loop but I don't see why ? Any help would be much appreciated.
Thank you
'
I am trying to compile the following code ,
C++:
std::unordered_map<char ,char> mappings = {{')', '('}, {'}' , '{'} , {']','['}};
std::stack<char> Stack;
for(int i = 0; i < s.length() ; ++i)
{
char c = s.at(i);
if(mappings.find(c) != s.end()) // ERROR !!!
{
...
}
}
Invalid operands to binary expression ('std::unordered_map<char, char>::iterator' (aka '__hash_map_iterator<__hash_iterator<std::__hash_node<std::__hash_value_type<char, char>, void *> *>>') and 'std::basic_string<char>::iterator' (aka '__wrap_iter<char *>'))
I think I am comparing the wrong iterators in the "if" loop but I don't see why ? Any help would be much appreciated.
Thank you
