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 };
  • 相关阅读:
    建立自己的开发知识库?分享制作电子书的经验
    海量Office文档搜索
    为什么要检测数据库连接是否可用
    多年的.NET开发,也只学会了这么几招
    总结一下ERP .NET程序员必须掌握的.NET技术
    菜单设计器(Menu Designer)及其B/S,C/S双重实现(B/S开源)
    软件公司为什么要加密源代码
    .NET开发中经常用到的扩展方法
    在Win8 Mertro 中使用SQLite
    SQLite
  • 原文地址:https://www.cnblogs.com/shanyr/p/11422939.html
Copyright © 2011-2022 走看看