LeetCode【8】. String to Integer (atoi) --java实现
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.
Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.
Update (2015-02-10):
The signature of the C++
function had been updated. If you still see your function signature accepts a const
argument, please click the reload button to reset your code definition.
char *
本文简单点说就是把字符串里的数字转成整形,可是题目有几点要求:
Requirements
for atoi:
The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical
digits as possible, and interprets them as a numerical value.
The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.
If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists
because either str is empty or it contains only whitespace characters, no conversion is performed.
If no valid conversion could be performed, a zero value is returned. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.
翻译大概意思是:
1、先丢弃字符串前面的空白字符知道扫到第一个非空白字符;然后将一个合法的数值的字符串以及其前面的一个正负号一同装换为int。
2、该合法数值子字符串中或后,可能包括其它非数值的特殊字符,忽略这些子字符串;
3、若第一个非空子字符串非护法的整型数值。或根本就没有,甚至该字符串可能都是特殊字符或空字符,则不作转换0;
4、若没有有效地转换,则返回0,若有返回数值超出边界,则返回边界值。
一、思路:
二、Java程序
public class Solution {
public int myAtoi(String str) {
int sl = str.length();
int index=0;
char tempc; //获取字符
boolean flag = false; //负数标志
int firstI=-1;
long re=0; if(sl<=0)
return 0;
//1. 開始至第一个非空字符
while(str.charAt(index)==' ')
{
index++;
if(index>=sl) //超过字符串长度
return 0;
} //2. 扫到第一个非空字符,推断是否合法
tempc = str.charAt(index);
//2.1 若是+-或数值则进行,否则则返回0
if(tempc=='-'||tempc=='+'||(tempc<='9'&&tempc>='0'))
{
//2.2 若是数值则跳出推断
if((tempc<='9'&&tempc>='0'))
{
}else //2.3 若是+-号,则推断接下来的是否为数值
{
if(tempc=='-') flag = true;//2.3.1 若是-号。则设置标志位 index++; //2.4 若是+-号,则推断下一位是不是数值,是则合法,不是则返回0
tempc = str.charAt(index);
if((tempc<='9'&&tempc>='0'))
{}else
{
return 0;
}
} }else //2.1 若是+-或数值则进行,否则则跳出
{
return 0;
} //3. 開始扫描有效数字
while(index<sl)
{
tempc = str.charAt(index);
if(tempc<='9'&&tempc>='0')
{
re = re*10 + (str.charAt(index)-'0');
if(re>=Integer.MAX_VALUE||re<=Integer.MIN_VALUE)
break;
}else
{
break;
}
index++;
} if(flag==true)
{ re=-re;
re = re<Integer.MIN_VALUE? Integer.MIN_VALUE:re;
}else
{
re = re>Integer.MAX_VALUE?Integer.MAX_VALUE:re;
}
return (int)re;
}
}
LeetCode【8】. String to Integer (atoi) --java实现的更多相关文章
- Leetcode 8. String to Integer (atoi) atoi函数实现 (字符串)
Leetcode 8. String to Integer (atoi) atoi函数实现 (字符串) 题目描述 实现atoi函数,将一个字符串转化为数字 测试样例 Input: "42&q ...
- leetcode第八题 String to Integer (atoi) (java)
String to Integer (atoi) time=272ms accepted 需考虑各种可能出现的情况 public class Solution { public int atoi( ...
- leetcode day6 -- String to Integer (atoi) && Best Time to Buy and Sell Stock I II III
1. String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully con ...
- 【leetcode】String to Integer (atoi)
String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully consider ...
- [leetcode] 8. String to Integer (atoi) (Medium)
实现字符串转整形数字 遵循几个规则: 1. 函数首先丢弃尽可能多的空格字符,直到找到第一个非空格字符. 2. 此时取初始加号或减号. 3. 后面跟着尽可能多的数字,并将它们解释为一个数值. 4. 字符 ...
- Leetcode 8. String to Integer (atoi)(模拟题,水)
8. String to Integer (atoi) Medium Implement atoi which converts a string to an integer. The functio ...
- [LeetCode][Python]String to Integer (atoi)
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/string- ...
- 【JAVA、C++】 LeetCode 008 String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. ...
- Java [leetcode 8] String to Integer (atoi)
问题描述: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input ...
随机推荐
- [terry笔记]GoldenGate_迁移同步_主库零停机
ogg根据scn同步数据,源库零停机时间 本次实验与上次的区别:更加注重细节,几乎包含所有步骤,把我越到的坑都作出了说明.并且同步是由10g向11g进行同步,更加符合升级迁移需求. 如下是主要步骤: ...
- NYIST 749 蚂蚁的难题(八)
蚂蚁的难题(八)时间限制:2000 ms | 内存限制:65535 KB难度:5 描述蚂蚁是一个古玩爱好者,他收藏了很多瓶瓶罐罐. 有一天,他要将他的宝贝们一字排开, 摆放到一个长度为L的展台上. 已 ...
- 005推断两个字符串是否是变位词 (keep it up)
写一个函数推断两个字符串是否是变位词. 变位词(anagrams)指的是组成两个单词的字符同样,但位置不同的单词.比方说, abbcd和abcdb就是一对变位词 这也是简单的题. 我们能够排序然后对照 ...
- javascript系列-class10.DOM(下)
1.node节点(更详细的获取(设置)页面中所有的内容) 根据 W3C 的 HTML DOM 标准,HTML 文档中的所有内容都是节点: 元素是节点的别称,节点包含元素当然节点还有 ...
- [JZOJ 5465] [NOIP2017提高A组冲刺11.9] 道路重建 解题报告 (e-dcc+树的直径)
题目链接: http://172.16.0.132/senior/#main/show/5465 题目: 小X所居住的X国共有n个城市,有m条无向道路将其连接.作为一个统一的国家,X 城的任意两个城市 ...
- JavaScript原型链:prototype与__proto__
title: 'JavaScript原型链:prototype与__proto__' toc: false date: 2018-09-04 11:16:54 主要看了这一篇,讲解的很清晰,最主要的一 ...
- hihocoder 1407 重复旋律2
思路: 二分一哈答案 height分个块 //By SiriusRen #include <cstdio> #include <cstring> #include <al ...
- MyBatis数据持久化(二)建立数据库会话
上篇文章中介绍了我们使用mybatis前的准备工作,并在程序中通过jdbc与mysql数据库成功建立连接,接下来介绍如何使用mybatis与数据库建立会话.我们需要以下几个步骤: 1.在build p ...
- Dapper基础知识二
在下刚毕业工作,之前实习有用到Dapper?这几天新项目想用上Dapper,在下比较菜鸟,这块只是个人对Dapper的一种总结. 2,如何使用Dapper? 首先Dapper是支持多种数据库的 ...
- 简单暴力的TP5多主题方案
一个小项目,需要配置多套前端主题.解决的思路是根据域名加载不同的主题配置. 一.在应用目录 application 下创建 common 目录. 二.application/common 目录下创建 ...