摘要:
std::unordered_map 的键要求: std::unordered_map 是基于哈希表的数据结构。 它要求键类型必须支持哈希计算,也就是必须有对应的 std::hash 函数。 另外,键类型还必须支持相等比较(通过 operator==)。 如果键类型没有定义哈希函数(例如你自定义的 阅读全文
摘要:
char字符->整数数字:std::isdigit 用于判断某个字符是否为数字(0-9)。 字符串->数字:std::stoi 用于将字符转换为整数。 int isdigit( int ch ); //std::isdigit 接受的参数类型为 int,通常会传递字符类型(char)作为参数,但是字 阅读全文