利用哈希表,从输入字符串的最后一位开始计算,计算到输入字符串的第三位 #include<bits/stdc++.h> using namespace std; int main() { unordered_map<char, int> hexmap; hexmap.insert(make_pair('0', 0)); hexmap.insert(make_pair('1...