65. 有效数字

验证给定的字符串是否可以解释为十进制数字。

例如:

“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 * 类型的参数,请点击重载按钮重置你的代码。

来源:力扣(LeetCode)

链接:https://leetcode-cn.com/problems/valid-number

著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
char[] chars;
boolean point = false;//是否有小数部分
boolean exponent = false;//是否有指数部分
public boolean isNumber(String s) {
s = s.trim();//去空格
int length = s.length();
if(length == 0){
return false;
}
chars = s.toCharArray();//转字符数组
String[] ss = s.split("e");//以e分隔数组为两部分
if(ss.length == 0){//只有e 错误
return false;
}
if(ss[0].length() == 0) return false;//如果e之前的部分为空 错误
if(ss[0].length() < length) exponent = true;//如果前面部分字符长小于字符串长度,说明有指数部分
if(ss[0].length() == length -1){
return false;
}
String[] pre = ss[0].split("\\.");//以小数点分隔 if(pre.length == 0){//如果只有小数点 错误
return false;
}
if(pre[0].length() < ss[0].length()) point = true;
//如果分隔后前面部分小于原来的长度,说明有小数部分 boolean result = pre(0, pre[0].length());
//整数部分是否正确
result = result && middle(pre[0].length()+1, ss[0].length());
//中间部分是否正确
if(exponent){//如果有指数部分
result = result && is(ss[0].length() +1, length);
//指数部分是否正确
}
return result;
}
public boolean pre(int i, int length){//判断整数部分是否正确
if(i >= length){
//如果整数部分为空 由于.1也是正确的,所以先返回正确
return true;
}
//第一个字符是加减号,i+1
if(chars[i] == '+' || chars[i] == '-') {
i++;
}
if(i == length && !point){
//如果没有小数部分,但是只有正负,返回错误
return false;
}
for(; i < length; i++){
//遍历整数部分
if(chars[i] < '0' || chars[i] > '9'){
//不是0-9就返回错误
return false;
} }
//到这,整数部分就是正确的了
return true;
}
public boolean middle(int i, int length){//小数部分
if(i >= length && point ){
//如果有小数点,但是小数部分为空
if(chars[i - 2] >= '0' && chars[i - 2] <= '9') {
//如果小数点之前有数字返回正确
return true;
}
//没有返回错误
return false;
}
for(; i < length; i++){//遍历中间部分
if(chars[i] < '0' || chars[i] > '9'){
//不是0-9就返回错误
return false;
} }
return true;
}
public boolean is(int i, int length){//指数部分
if(i == 1){
//在进来之前已经判断有指数部分,如果e前面为空,返回错误
return false;
}
//指数部分也可能有正负
if(chars[i] == '+' || chars[i] == '-') {
i++;
}
//之后正负号,返回错误
if( i == length){
return false;
}
for(; i < length; i++){
//遍历指数部分
if(chars[i] < '0' || chars[i] > '9'){
//不是0-9返回错误
return false;
} }
return true;
}
}

Java实现 LeetCode 65 有效数字的更多相关文章

  1. C#版 - Leetcode 65. 有效数字 - 题解

    版权声明: 本文为博主Bravo Yeung(知乎UserName同名)的原创文章,欲转载请先私信获博主允许,转载时请附上网址 http://blog.csdn.net/lzuacm. Leetcod ...

  2. [LeetCode] 65. 有效数字

    题目链接 : https://leetcode-cn.com/problems/valid-number/ 题目描述: 验证给定的字符串是否可以解释为十进制数字. 例如: "0"` ...

  3. Java for LeetCode 216 Combination Sum III

    Find all possible combinations of k numbers that add up to a number n, given that only numbers from ...

  4. Java for LeetCode 214 Shortest Palindrome

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  5. Java for LeetCode 212 Word Search II

    Given a 2D board and a list of words from the dictionary, find all words in the board. Each word mus ...

  6. Java for LeetCode 211 Add and Search Word - Data structure design

    Design a data structure that supports the following two operations: void addWord(word)bool search(wo ...

  7. Java for LeetCode 210 Course Schedule II

    There are a total of n courses you have to take, labeled from 0 to n - 1. Some courses may have prer ...

  8. Java for LeetCode 200 Number of Islands

    Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surro ...

  9. Java for LeetCode 188 Best Time to Buy and Sell Stock IV【HARD】

    Say you have an array for which the ith element is the price of a given stock on day i. Design an al ...

随机推荐

  1. [hdu5387 Clock]时钟夹角问题

    题意:给一个时刻,求时针.分钟.秒针三者之间的夹角 思路:确定参照点,求出三者的绝对夹角,然后用差来得到它们之间的夹角,钝角情况用360.减去就行了. #include <map> #in ...

  2. SpringMVC 拦截返回值,并自定义

    有关取代mvc:annotation-driven使用自定义配置请看: http://blog.csdn.net/cml_blog/article/details/45222431 1.在项目开发中, ...

  3. spring mvc --自定义converse

    在MVC中我们可以很轻松的根据项目需求进行必要的信息转换,如设置默认的日期格式,自定义String类型的格式等等... 配置中我们需要自定义converseService: <bean id=& ...

  4. Spring全家桶之springMVC(四)

      路径变量PathVariable PathVariable   Controller除了可以接收表单提交的数据之外,还可以获取url中携带的变量,即路径变量,此时需要使用@PathVariable ...

  5. 对background: url("~assets/img/common/collect.svg") 0 0/14px 14px 的理解

    需求:给收藏数字前面通过::before伪元素添加图标 相关代码: .goods-info .collect { position: relative; } .goods-info .collect: ...

  6. 网鼎杯2020青龙组writeup-web

    本文首发于Leon的Blog,如需转载请注明原创地址并联系作者 AreUSerialz 开题即送源码: <?php include("flag.php"); highligh ...

  7. 【雕爷学编程】Arduino动手做(45)---红外避障传感器

    37款传感器与模块的提法,在网络上广泛流传,其实Arduino能够兼容的传感器模块肯定是不止37种的.鉴于本人手头积累了一些传感器和模块,依照实践出真知(一定要动手做)的理念,以学习和交流为目的,这里 ...

  8. git init 后关联github仓库是发生错误:

    : failed to push some refs to 'git@github.com:AlanKnightly/reactC.git'hint: Updates were rejected be ...

  9. Django路由配置之正则表达式详解

    正则表达式详解 urls.py from django.conf.urls import url from . import views urlpatterns = [ url(r'^articles ...

  10. hdu6090 菊花图

    Rikka with Graph Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) ...