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.

    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 class Solution {
     2 public:
     3     int atoi(const char *str) {
     4         if(!str) return 0;
     5         while(*str == ' ') str++;
     6         bool positive;
     7         if(*str == '+' || *str == '-') {
     8             positive = *str == '+' ? true : false;
     9             str++;
    10         }
    11         long long res = 0;
    12         while(isdigit(*str)) {
    13             res = res * 10 + (*str - '0');
    14             str++;
    15         }
    16         res = positive ? res : -res;
    17         if(res < INT_MIN) return INT_MIN;
    18         if(res > INT_MAX) return INT_MAX;
    19         return res;
    20     }
    21 };
  • 相关阅读:
    Codeforces 429 A. Xor-tree
    有趣的游戏:Google XSS Game
    三层架构(一个)——什么是三层架构?
    atitit.ajax bp dwr 3.该票据安排使用的流量汇总 VO9o.....
    深入struts2.0(五)--Dispatcher类
    update与fixedupdate差别
    Android 平台 HTTP网速測试 案例 API 分析
    Matlab画图-非常具体,非常全面
    词性标注
    windows消息钩子
  • 原文地址:https://www.cnblogs.com/zhengjiankang/p/3660033.html
Copyright © 2011-2022 走看看