-
Notifications
You must be signed in to change notification settings - Fork 0
/
0065.有效数字.cpp
74 lines (71 loc) · 1.68 KB
/
0065.有效数字.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
/*
* @lc app=leetcode.cn id=65 lang=cpp
*
* [65] 有效数字
*
* https://leetcode-cn.com/problems/valid-number/description/
*
* algorithms
* Hard (15.81%)
* Likes: 65
* Dislikes: 0
* Total Accepted: 7.1K
* Total Submissions: 41.6K
* Testcase Example: '"0"'
*
* 验证给定的字符串是否可以解释为十进制数字。
*
* 例如:
*
* "0" => true
* " 0.1 " => true
* "abc" => false
* "1 a" => false
* "2e10" => true
* " -90e3 " => true
* " 1e" => false
* "e3" => false
* " 6e-1" => true
* " 99e2.5 " => false
* "53.5e93" => true
* " --6 " => false
* "-+3" => false
* "95a54e53" => false
*
* 说明: 我们有意将问题陈述地比较模糊。在实现代码之前,你应当事先思考所有可能的情况。这里给出一份可能存在于有效十进制数字中的字符列表:
*
*
* 数字 0-9
* 指数 - "e"
* 正/负号 - "+"/"-"
* 小数点 - "."
*
*
* 当然,在输入中,这些字符的上下文也很重要。
*
* 更新于 2015-02-10:
* C++函数的形式已经更新了。如果你仍然看见你的函数接收 const char * 类型的参数,请点击重载按钮重置你的代码。
*
*/
// @lc code=start
#include <regex>
#include <string>
using namespace std;
class Solution {
public:
void trim(string& s)
{
if (!s.empty()) {
s.erase(0, s.find_first_not_of(" "));
s.erase(s.find_last_not_of(" ") + 1);
}
}
bool isNumber(string s)
{
trim(s);
regex pattern("^[-+]?(\\d+\\.\\d+|\\d+\\.|\\.\\d+|\\d+)(e[-+]?\\d+)?$");
bool ans = regex_match(s, pattern);
return ans;
}
};
// @lc code=end