caipengbo / Coding-Interviews

剑指offer
2 stars 0 forks source link

20. 表示数值的字符串 #18

Open caipengbo opened 5 years ago

caipengbo commented 5 years ago

也是字符串的模式匹配问题

主要是想好所有的情况,如果是有多种条件的话,可能需要多个函数(这样代码比较清晰)来进行检测

比如本题 就是, 字符串遵循模式 A[.[B]][e|EC], A 和 C 是有符号整数(可以有+ - 号), B是无符号整数 就需要scanIntegerscanUnsignedInteger 两个辅助函数