https://oj.leetcode.com/problems/valid-number/
判断给的串,是不是合理的 数字形式
主要问题在需求定义上吧
class Solution { public: bool isNumber(const char *s) { if(s == NULL) return false; int index = 0; // remove heading spaces while(s[index] != '