-
Notifications
You must be signed in to change notification settings - Fork 639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
字符串转换整数 (atoi) #132
Comments
暴力api
|
解答:parseInt
而题目的主要规则可以概况为:
所有的条件
代码实现: var myAtoi = function(s) {
// parseInt
const number = parseInt(s);
// 判断 parseInt 的结果是否为 NaN,是则返回 0
if(isNaN(number)) {
return 0;
} else if (number < Math.pow(-2, 31) || number > Math.pow(2, 31) - 1) {
// 超出
return number < Math.pow(-2, 31) ? Math.pow(-2, 31) : Math.pow(2, 31) - 1;
} else {
return number;
}
} 非 parseInt 解答: var myAtoi = function(s) {
let res = 0
s = s.trimStart()
match = s.match(/[+|-]?\d*/)[0]
if(match === '+' || match === '-' || match === '') {
return 0
}
res = +match
if(res > 2 ** 31 - 1) res = 2 ** 31 -1
if(res < -(2 ** 31)) res = -(2 ** 31)
return res
} |
|
|
没有使用Js自带的 const INT_MAX = Math.pow(2, 31) - 1;
const INT_MIN = -Math.pow(2, 31);
const atoi = (str: string) => {
let i = 0;
let char = str.charAt(i);
while (char === ' ') {
i++;
char = str.charAt(i);
}
if (!(/[-,+,0-9]/).test(char)) return 0;
// 第一个字符
let numStr = char;
i++;
char = str.charAt(i);
while (char) {
if (!(/[0-9]/).test(char)) break;
numStr += char;
i++;
char = str.charAt(i);
}
const len = numStr.length;
let num = 0;
for (let j = 0; j < len; j++) {
const val = numStr.charAt(len - j - 1);
if (j === len - 1) {
if (val === '+') break;
if (val === '-') {
num *= -1;
break;
}
}
num += +val * Math.pow(10, j);
}
if (num > INT_MAX) num = INT_MAX;
if (num < INT_MIN) num = INT_MIN;
return num;
};
console.log(atoi(' -42'));
console.log(atoi('42'));
console.log(atoi('4193 with words'));
console.log(atoi('-91283472332'));
//-42
//42
//4193
//-2147483648 |
const atoi = (str) => { |
function getMostNumber(str){
let reg = /^[+-]?[0-9]*/
str = str.trimStart()
let temp =str.match(reg)
console.log(reg.exec(str),str.match(reg),temp,'temp')
let max =Math.pow(2,31)
let min = -max-1
if(temp<min){
return min
}
if(temp>max){
return max
}
if(!temp){
return 0
}
return temp[0]
}
console.log(getMostNumber('42'))
console.log(getMostNumber(" -42"))
console.log(getMostNumber("4193 with words"))
console.log(getMostNumber("words and 987"))
console.log(getMostNumber("-91283472332")) |
请你来实现一个 atoi 函数,使其能将字符串转换成整数。
首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。接下来的转化规则如下:
如果第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字字符组合起来,形成一个有符号整数。
假如第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成一个整数。
该字符串在有效的整数部分之后也可能会存在多余的字符,那么这些字符可以被忽略,它们对函数不应该造成影响。
注意:假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,则你的函数不需要进行转换,即无法进行有效转换。
在任何情况下,若函数不能进行有效的转换时,请返回 0 。
提示:
本题中的空白字符只包括空格字符 ' ' 。
假设我们的环境只能存储 32 位大小的有符号整数,那么其数值范围为 [−231, 231 − 1]。如果数值超过这个范围,请返回 INT_MAX (231 − 1) 或 INT_MIN (−231) 。
示例 1:
示例 2:
示例 3:
示例 4:
示例 5:
leetcode
The text was updated successfully, but these errors were encountered: