solution.md 8.0 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 有效数字
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3
<p><strong>有效数字</strong>(按顺序)可以分成以下几个部分:</p><ol>	<li>一个 <strong>小数</strong> 或者 <strong>整数</strong></li>	<li>(可选)一个 <code>'e'</code><code>'E'</code> ,后面跟着一个 <strong>整数</strong></li></ol><p><strong>小数</strong>(按顺序)可以分成以下几个部分:</p><ol>	<li>(可选)一个符号字符(<code>'+'</code><code>'-'</code></li>	<li>下述格式之一:	<ol>		<li>至少一位数字,后面跟着一个点 <code>'.'</code></li>		<li>至少一位数字,后面跟着一个点 <code>'.'</code> ,后面再跟着至少一位数字</li>		<li>一个点 <code>'.'</code> ,后面跟着至少一位数字</li>	</ol>	</li></ol><p><strong>整数</strong>(按顺序)可以分成以下几个部分:</p><ol>	<li>(可选)一个符号字符(<code>'+'</code><code>'-'</code></li>	<li>至少一位数字</li></ol><p>部分有效数字列举如下:</p><ul>	<li><code>["2", "0089", "-0.1", "+3.14", "4.", "-.9", "2e10", "-90E3", "3e+7", "+6e-1", "53.5e93", "-123.456e789"]</code></li></ul><p>部分无效数字列举如下:</p><ul>	<li><code>["abc", "1a", "1e", "e3", "99e2.5", "--6", "-+3", "95a54e53"]</code></li></ul><p>给你一个字符串 <code>s</code> ,如果 <code>s</code> 是一个 <strong>有效数字</strong> ,请返回 <code>true</code></p><p> </p><p><strong>示例 1:</strong></p><pre><strong>输入:</strong>s = "0"<strong><br />输出:</strong>true</pre><p><strong>示例 2:</strong></p><pre><strong>输入:</strong>s = "e"<strong><br />输出:</strong>false</pre><p><strong>示例 3:</strong></p><pre><strong>输入:</strong>s = "."<strong><br />输出:</strong>false</pre><p><strong>示例 4:</strong></p><pre><strong>输入:</strong>s = ".1"<strong><br />输出:</strong>true</pre><p> </p><p><strong>提示:</strong></p><ul>	<li><code>1 <= s.length <= 20</code></li>	<li><code>s</code> 仅含英文字母(大写和小写),数字(<code>0-9</code>),加号 <code>'+'</code> ,减号 <code>'-'</code> ,或者点 <code>'.'</code></li></ul>
每日一练社区's avatar
每日一练社区 已提交
4
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
5

每日一练社区's avatar
每日一练社区 已提交
6
## aop
F
fix bug  
feilong 已提交
7

每日一练社区's avatar
每日一练社区 已提交
8
### before
F
fix bug  
feilong 已提交
9

每日一练社区's avatar
每日一练社区 已提交
10
```c
每日一练社区's avatar
每日一练社区 已提交
11 12 13
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
14

每日一练社区's avatar
每日一练社区 已提交
15
### after
F
fix bug  
feilong 已提交
16

每日一练社区's avatar
每日一练社区 已提交
17
```c
每日一练社区's avatar
每日一练社区 已提交
18 19 20 21 22 23 24 25 26 27 28 29
int main()
{
    Solution sol;
    string s = ".1";
    bool res;
    res = sol.isNumber(s);
    cout << res;
    return 0;
}
```

## 答案
F
fix bug  
feilong 已提交
30

每日一练社区's avatar
每日一练社区 已提交
31
```c
每日一练社区's avatar
每日一练社区 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
class Solution
{
public:
    bool isNumber(string s)
    {
        int len = s.size();
        int left = 0, right = len - 1;
        bool eExisted = false;
        bool dotExisted = false;
        bool digitExisited = false;

        while (s[left] == ' ')
            ++left;
        while (s[right] == ' ')
            --right;

        if (left >= right && (s[left] < '0' || s[left] > '9'))
            return false;

        if (s[left] == '.')
            dotExisted = true;
        else if (s[left] >= '0' && s[left] <= '9')
            digitExisited = true;
        else if (s[left] != '+' && s[left] != '-')
            return false;

        for (int i = left + 1; i <= right - 1; ++i)
        {
            if (s[i] >= '0' && s[i] <= '9')
                digitExisited = true;
            else if (s[i] == 'e' || s[i] == 'E')
            {
                if (!eExisted && s[i - 1] != '+' && s[i - 1] != '-' && digitExisited)
                    eExisted = true;
                else
                    return false;
            }
            else if (s[i] == '+' || s[i] == '-')
            {
                if (s[i - 1] != 'e' && s[i - 1] != 'E')
                    return false;
            }
            else if (s[i] == '.')
            {
                if (!dotExisted && !eExisted)
                    dotExisted = true;
                else
                    return false;
            }
            else
                return false;
        }

        if (s[right] >= '0' && s[right] <= '9')
            return true;
        else
            return false;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
94

每日一练社区's avatar
每日一练社区 已提交
95
### A
F
fix bug  
feilong 已提交
96

每日一练社区's avatar
每日一练社区 已提交
97
```c
每日一练社区's avatar
每日一练社区 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
class Solution
{
public:
    bool isInt(string &s, int &index)
    {
        if (index < s.size() && (s[index] == '-' || s[index] == '+'))
            index++;
        return isUnsigned(s, index);
    }

    bool isUnsigned(string &s, int &index)
    {
        int pre = index;
        while (index < s.size())
        {
            if (s[index] >= '0' && s[index] <= '9')
                index++;
            else
                break;
        }
        return index > pre;
    }

    bool isNumber(string s)
    {
        if (s.empty())
        {
            return false;
        }

        int index = 0;
        while (index < s.size() && s[index] == ' ')
        {
            index++;
        }

        bool ans = isInt(s, index);
        if (index < s.size() && s[index] == '.')
        {
            index++;
            ans = isUnsigned(s, index) || ans;
        }

        if (index < s.size() && s[index] == 'e')
        {
            index++;
            ans = isInt(s, index) && ans;
        }

        while (index < s.size() && s[index] == ' ')
        {
            index++;
        }

        return ans && index == s.size();
    }
};
```

### B
F
fix bug  
feilong 已提交
158

每日一练社区's avatar
每日一练社区 已提交
159
```c
每日一练社区's avatar
每日一练社区 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
class Solution
{
public:
    bool isNumber(string s)
    {
        int tail = s.size() - 1;
        int head = 0;
        while (tail >= 0)
        {
            if (s[tail] == ' ')
                --tail;
            else
                break;
        }
        while (head <= tail)
        {
            if (s[head] == ' ')
                ++head;
            else
                break;
        }
        if (head > tail)
            return false;
        s = s.substr(head, tail - head + 1);
        int index = s.find('e');
        if (index == string::npos)
            return judgea(s);
        else
            return judgea(s.substr(0, index)) && judgeb(s.substr(index + 1));
    }
    bool judgea(string s)
    {
        bool have_num = false;
        bool have_pointed = false;
        for (int i = 0; i < s.size(); i++)
        {
            if (s[i] >= '0' && s[i] <= '9')
                have_num = true;
            else if (s[i] == '+' || s[i] == '-')
            {
                if (i != 0)
                    return false;
            }
            else if (s[i] == '.')
            {
                if (have_pointed)
                    return false;
                have_pointed = true;
            }
            else
                return false;
        }
        return have_num;
    }

    bool judgeb(string s)
    {
        bool have_num = false;
        for (int i = 0; i < s.size(); i++)
        {
            if (s[i] >= '0' && s[i] <= '9')
                have_num = true;
            else if (s[i] == '-' || s[i] == '+')
            {
                if (i != 0)
                    return false;
            }
            else
                return false;
        }
        return have_num;
    }
};
```

### C
F
fix bug  
feilong 已提交
236

每日一练社区's avatar
每日一练社区 已提交
237
```c
每日一练社区's avatar
每日一练社区 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
class Solution
{
public:
    bool isNumber(string s)
    {
        bool num = false, numAfterE = true, dot = false, sign = false, exp = false;
        int n = s.size();
        for (int i = 0; i < n; ++i)
        {
            if (s[i] == ' ')
            {
                if (i < n - 1 && s[i + 1] != ' ' && (num || dot || sign || exp))
                    return false;
            }
            else if (s[i] == '+' || s[i] == '-')
            {
                if (i > 0 && s[i - 1] != 'e' && s[i - 1] != ' ')
                    return false;
                sign = true;
            }
            else if (s[i] >= '0' && s[i] <= '9')
            {
                num = true;
                numAfterE = true;
            }
            else if (s[i] == '.')
            {
                if (dot || exp)
                    return false;
                dot = true;
            }
            else if (s[i] == 'e')
            {
                if (exp || !num)
                    return false;
                exp = true;
                numAfterE = false;
            }
            else
                return false;
        }
        return num && numAfterE;
    }
};
```