#include <vector> #include <unordered_set> class Solution { public: bool isNumeric(string str) { // sign: 正负号 出现位置 // point:点 出现位置 // E: e 出现位置 // num: 数字出现位置 vector<int> sign,point,E; // 为...