zoukankan      html  css  js  c++  java
  • [LeetCode] 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.
    » Solve this problem



        bool isNumber(const char *s) {
           
            while(*s == ' ') s++;
            bool isNum = false;
            bool hasOp = false;
            bool hasExp = false;
            bool hasDot = false;
            bool hasNum = false;
            for(; *s!='\0'; s++)
            {
                if(*s == '+' || *s == '-')
                {
                    if(!hasOp && !hasNum)
                    {
                        hasOp=true;
                        isNum = false;
                        continue;
                    }
                    else
                    {
                        isNum = false;
                        break;
                    }
                }
               
                if(*s == '.')
                {
                   
                    if(!hasDot)
                    {
                        hasDot=true;              
                        hasNum=true;
                        if(hasExp)
                        {
                            isNum = false;
                            break;
                        }
                        continue;
                    }
                    else
                    {
                        isNum = false;
                        break;
                    }
                }
               
                if(*s == 'e')
                {
                   
                    if(!hasExp && hasNum)
                    {
                        hasExp=true;
                        hasOp = false;
                        hasNum = false;
                     
                        isNum = false;
                        continue;
                    }
                    else
                    {
                        isNum = false;
                        break;
                    }
                }
               
                if(*s<='9' && *s>='0')
                {
                    isNum = true;
                    hasNum = true;
                    continue;
                }
                else
                {
                    if(*s != ' ')
                    {
                        isNum = false;
                        break;
                    }
                    while(*s == ' ') s++;
                    if(*s !='\0')
                    {
                        isNum = false;
                       
                    }
                    break;
                }
            }
           
            return isNum;      
        }
  • 相关阅读:
    C#调用Halcon
    C#跨窗体程序调用方法的具体操作
    C#调用DLL报错:试图加载格式不正确的程序
    C#窗体程序设置禁用关闭按钮
    C#窗体程序设置禁用关闭按钮
    C#在字符串中查询指定字符串是否存在
    poj1654
    poj1873
    poj2451
    poj1113
  • 原文地址:https://www.cnblogs.com/codingtmd/p/5078873.html
Copyright © 2011-2022 走看看