Valid Number-有限状态机/正则表达式

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)可以直接的用很多if判断。

2)网上有用有限状态机的。http://blog.csdn.net/suwei19870312/article/details/12094233 http://blog.csdn.net/efergrehbtrj/article/details/46789405

3)正则表达式。

不太懂,mark一下。

你可能感兴趣的:(LeetCode,有限状态机,正则表达式)