estoy usando g ++ en UbuntuC++ unordered_map compilar problema con g ++
g++ (Ubuntu 4.4.3-4ubuntu5) 4.4.3
tengo este código
#include<unordered_map>
using namespace std;
bool ifunique(char *s){
unordered_map<char,bool> h;
if(s== NULL){
return true;
}
while(*s){
if(h.find(*s) != h.end()){
return false;
}
h.insert(*s,true);
s++;
}
return false;
}
cuando compilo usando
g++ mycode.cc
llegué error
error: 'unordered_map' was not declared in this scope
¿Me falta algo?
de error: ninguna función coincidente para la llamada a 'std: : unordered_map, std :: equal_to , std :: allocator >> :: insert (char &, bool) ' –
icn
@xlione: Can usted nos muestra el código? Parece que estás intentando insertar un tipo de referencia en tu mapa. – birryree
actualizado, gracias – icn