#include<iostream>
using namespace std;
bool scanUnsignedInteger(const char** str);//扫描无符号整数
bool scanInteger(const char** str); //扫描整数
bool isNumeric(const char* str)
{
if (str == nullptr)
return false;
bool numeric = scanInteger(&str);
if (*str == '.')
{
++str;
numeric = scanUnsignedInteger(&str)||numeric;
}
if (*str == 'e' || *str == 'E')
{
++str;
numeric = numeric && scanInteger(&str);
}
return numeric && *str == '\0';
}
bool scanInteger(const char** str)
{
if (**str == '+' || **str == '-')
{
++(*str);
}
return scanUnsignedInteger(str);
}
bool scanUnsignedInteger(const char** str)
{
const char* before = *str;
while (**str != '\0' && **str > '0' && **str <= '9')
++(*str);
return *str > before;
}
int main()
{
const char* str = "1234567";
bool result;
result = isNumeric(str);
cout << result;
cin.get();
return 0;
}
剑指offer 面试题20 表示数值的字符串
最新推荐文章于 2024-11-09 20:38:27 发布