leetCode 65.Valid Number (有效数字)

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.

思路:此题是真的有些难度的,而且最重要的是我根本就不清楚一个有效数字的规则。。。一个连规则都不知道的人怎么能玩好游戏呢,所以果断的挂了10次8次的,最后还是没有完全答对。暂时把别人的代码拿出来放在下面,有时间再好好研究一下:

public class Solution {
    public boolean isNumber(String s) {
        // Start typing your Java solution below
        // DO NOT write main() function
       /* 

       "0" => true
        "     0.1     " => true
        "abc" => false
        "1 a" => false
        "+-2e10" => true
        //*/
        //check input.
        if(s==null || s.length()==0) return false;
        int sz = s.length();
        int i=0;

        while(i<sz && s.charAt(i)==' ') ++i;

        boolean space = false;
        boolean exp = false;
        boolean dot = false;
        boolean number = false;
        boolean neg = false;

        for(; i<sz; i++) {
            char c = s.charAt(i);
            if(c==' ') {
                space = true;
            } else if(space==true) {
                return false;
            } else if( (c=='e' || c=='E') && exp==false && number==true) {
                exp = true;
                number = false;
                dot = true;
                neg = false;
            } else if( c=='.' && dot==false) {
                dot = true;
                neg = true;
               // number = false;
            } else if( c>='0' && c<='9') {
                number = true;
            } else if((c=='+' || c=='-') && neg==false && number==false ) {
                neg = true;
            } else {
                return false;
            }
        }
        return number;
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-08-03 15:27:47

leetCode 65.Valid Number (有效数字)的相关文章

LeetCode --- 65. Valid Number

题目链接: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 statemen

Leetcode 65. Valid Number 验证数字 解题报告

1 解题思想 更新下:这道突然就很多访问,想起来好像是lt提交通过率最低的,嗯,我写的也不是特别详细,如有问题可以新浪微博@MebiuW交流~~ 这道题条条框框是在太多了,各种情况..不过简略来说,正确的做法应该是: 1.熟悉数字的表述规则(可以看网上的,也可以看我代码的),这道题关键是要懂所有的数字规则. 2.对输入的数字首先进行必要的检测,是否有abc或者中间空格等非法字符 3.将e前面和e后面分开计算!e前面允许有小数点形式的,e后面不允许有小数点形式的 4.数字的形式一般是 可以有正负号

[LeetCode 65] Valid Number (通过率最低的一题)

题目链接: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 st

[LeetCode] 65. Valid Number Java

题目: 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.

LeetCode:Valid Number - 判断字符串中内容是否为数字

1.题目名称 Valid Number(判断字符串中内容是否为数字) 2.题目地址 https://leetcode.com/problems/valid-number/ 3.题目内容 英文:Validate if a given string is numeric. 中文:给出一个字符串,检查这个字符串中内容是否是一个数字 例如:"0"." 0.1"."2e10"是数字,"abc"."1 a"不是数字 4

No.65 Valid Number

No.65 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

【leetcode】Valid Number

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 am

[LeetCode][JavaScript]Valid Number

https://leetcode.com/problems/valid-number/ 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

【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 sta