Validate if a given string is numeric.
Some examples:
“0” => true
“ 0.1 “ => true
“abc” => false
“1 a” => false
“2e10” => true
Note: It is intended for the problem statement to be ambiguous. You should gather all requirements up front before implementing one.
Update (2015-02-10):
The signature of the C++ function had been updated. If you still see your function signature accepts a const char * argument, please click the reload button to reset your code definition.
解法1: DFA
第一次遇到可以用DFA(finite automata)做的题,终于学到的理论知识也有可以用的地方了。
用dfa做的时候的点在于首先要换出图,然后识别出valid的state,最后判断一下是否落在state中就可以了。实现起来比较简单。
|
|