Leetcode string to INTEGER (atoi)

Source: Internet
Author: User
class Solution {public:    int atoi(const char *str) {        if (str == NULL) return 0;        long val =0, pos = 0;        char ch = ‘\0‘;        int stage = 0; // 0-initial, 1-sign-collected, 2-digit-collected, 3-end         bool positive = true;        int pos_threshold = INT_MAX / 10;        int neg_threshold = INT_MIN / 10;        while(stage < 3 && (ch = str[pos]) != ‘\0‘) {            switch(stage) {                case 0: // initial stage                    if (ch == ‘-‘ || ch == ‘+‘) {                        // sign detected                        positive = ch == ‘+‘;                        stage = 1;                        pos++;                    } else if (ch >= ‘0‘ && ch <= ‘9‘) {                        // digit detected                        stage = 2;                    } else if (ch == ‘ ‘ || ch == ‘\t‘ || ch == ‘\n‘) {                        // leading white space                        pos++;                    } else {                        // other chars, invalid str to convert                        stage = 3;                    }                    ;break;                case 1: // sign-collected stage                    if (ch >= ‘0‘ && ch <= ‘9‘) {                        // digit after sign                        stage = 2;                    } else {                        // other chars, invalid str to convert                        stage = 3;                    }                    ;break;                case 2: // number detected stage                    if (ch >= ‘0‘ && ch <= ‘9‘) {                        // digits                        int pre_val = val;                        if (positive) {                            val = val * 10 + (ch - ‘0‘);                            if (pre_val > pos_threshold || val < pre_val) {                                stage = 3;                                val = INT_MAX;                            }                        } else {                            val = val * 10 - (ch - ‘0‘);                            if (pre_val < neg_threshold || val > pre_val) {                                stage = 3;                                val = INT_MIN;                            }                        }                        pos++;                    } else {                        // other chars, invalid                        stage = 3;                    }                    ;break;            }        }        return val;    }};

There is no wide range of data types. Overflow needs to be considered. It is a small state machine.

Leetcode string to INTEGER (atoi)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.