zoukankan      html  css  js  c++  java
  • String to Integer (atoi)

    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 char * argument, please click the reload button  to reset your code definition.

    spoilers alert... click to show requirements for atoi.

    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.

    Runtime: 22ms

    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 class Solution {
     2 public:
     3     int myAtoi(string str) {
     4         long long result = 0;
     5         int index = 0;
     6         while (index < str.size() && str[index] == ' ')
     7             index++;
     8         
     9         int sign = 1;
    10         while (index < str.size()) {
    11             if (str[index] == '+' || str[index] == '-') {
    12                 sign = str[index] == '+' ? 1 : -1;
    13                 index++;
    14             }
    15             
    16             while (index < str.size() && isdigit(str[index])) {
    17                 result = 10 * result + (str[index++] - '0');
    18                 if (sign * result > INT_MAX) return INT_MAX;
    19                 if (sign * result < INT_MIN) return INT_MIN;
    20             }
    21             return sign * (int)(result);
    22         }
    23         return sign * (int)(result);
    24     }
    25 };
  • 相关阅读:
    引号的区别
    QT中加载动态链接库
    QString 转换为 char *
    C++虚继承初识
    虚析构函数详解
    赋值兼容规则
    利用docker搭建spark hadoop workbench
    《用Java写一个通用的服务器程序》03 处理新socket
    《用Java写一个通用的服务器程序》02 监听器
    《用Java写一个通用的服务器程序》01 综述
  • 原文地址:https://www.cnblogs.com/amazingzoe/p/5918537.html
Copyright © 2011-2022 走看看