zoukankan      html  css  js  c++  java
  • Leetcode 8. String to Integer (atoi)(模拟题,水)

    8. String to Integer (atoi)
    Medium

    Implement atoi which converts a string to an integer.

    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.

    Note:

    • Only the space character ' ' is considered as whitespace character.
    • Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231,  231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) is returned.

    Example 1:

    Input: "42"
    Output: 42
    

    Example 2:

    Input: "   -42"
    Output: -42
    Explanation: The first non-whitespace character is '-', which is the minus sign.
                 Then take as many numerical digits as possible, which gets 42.
    

    Example 3:

    Input: "4193 with words"
    Output: 4193
    Explanation: Conversion stops at digit '3' as the next character is not a numerical digit.
    

    Example 4:

    Input: "words and 987"
    Output: 0
    Explanation: The first non-whitespace character is 'w', which is not a numerical 
                 digit or a +/- sign. Therefore no valid conversion could be performed.

    Example 5:

    Input: "-91283472332"
    Output: -2147483648
    Explanation: The number "-91283472332" is out of the range of a 32-bit signed integer.
                 Thefore INT_MIN 
    
    
     1 class Solution {
     2 public:
     3     int in(char ch){
     4         if(ch<='9'&&ch>='0') return 1;
     5         else if(ch==' ')return 2;
     6         else if(ch=='-')return 3;
     7         else if(ch=='+') return 4;
     8         else return 0;
     9     }
    10     int myAtoi(string str) {
    11         int len = str.length();
    12         long long ans = 0;
    13         int fl = 0;//是否是负数
    14         bool begin = 0;
    15         for(int i = 0; i < len; i++){
    16             if(in(str[i])==0){
    17                 if(begin==0) return 0;
    18                 else break;
    19             }
    20             else if(in(str[i])==3){
    21                 if(begin==0){
    22                     fl = 1;
    23                     begin = 1;
    24                 } 
    25                 else break;
    26             }
    27             else if(in(str[i])==4){
    28                 if(begin==0){
    29                     begin = 1;
    30                 } 
    31                 else break;
    32             }
    33             else if(in(str[i])==2){
    34                 if(begin==0)continue;
    35                 else break;
    36             }
    37             else{
    38                 ans = ans * 10 + (str[i]-'0');
    39                 begin = 1;
    40                 if(ans >= pow(2,31)) {
    41                     break;
    42                 }
    43             }
    44         }
    45         if(fl==1) ans = -ans;
    46         if(ans < -2147483648) return -2147483648;
    47         if(ans >= 2147483648) return 2147483647;
    48         return ans;
    49     }
    50 };
  • 相关阅读:
    看《长安十二时辰》可以了解哪些算法知识
    面试官,我会写二分查找法!对,没有 bug 的那种!
    毕业十年后,我忍不住出了一份程序员的高考试卷
    扫雷与算法:如何随机化的布雷(一)
    降维打击!为什么我认为数据结构与算法对前端开发很重要
    盖尔-沙普利算法告诉你,你的对象在哪里?
    这道算法题太太太太太简单啦
    有点难度,几道和「滑动窗口」有关的算法面试题
    几道和「黑洞照片」那种海量数据有关的算法问题
    LeetCode 上最难的链表算法题,没有之一!
  • 原文地址:https://www.cnblogs.com/shanyr/p/11422939.html
Copyright © 2011-2022 走看看