字串處理 字串轉整數

2021-07-11 13:55:52 字數 1461 閱讀 1410

四. 字串轉為整數

題目描述:

輸入數字字元,輸出數字(寫乙個自己的atoi).

關鍵:

乙個字元減去』0』就轉化為整型.使用乙個迴圈把字串中的內個字元都轉換為整型再放到相應的位上,就可以解決問題.

//原始版本

#include

#include

using

namespace

std;

static

const

int len = 100;

int strtoint(const

char *str);

int main()

num[i] = '\0';

number = strtoint(num);

cout

<< "the num is: "

<< endl;

return0;}

int strtoint(const

char *str)

return n;

}

在此版本中有幾個問題:

輸入為null的處理.

輸入非數字字元的處理.

溢位的處理.

輸入正、負號的處理.

由於函式返回值為乙個int型資料,且出現錯誤是返回了0,則為了區別出這種情況,設定乙個全域性變數flag = 1.一旦出現非法的輸入,就將其置為0,並返回乙個0.在輸出時,就可以根據flag區分.

對於會產生溢位的輸入,我們返回int型的邊界值.判斷方法是:

每次判斷n與max/10的大小,若(n > max/10) || (n == max/10 && c > max % n)則直接返回邊界值.

修改後新增的**:

#include static

const

int max_int = (int)((unsigned)~0 >> 1);

static

const

int min_int = -(int)((unsigned)~0 >> 1) - 1;

int flag = 1;

int strtoint(const

char *str)

while(str[i] == ' ') //跳過空格

i++;

if(str[i] == '-' || str[i] == '+')

while(i < strlen(str))

else

if(sign < 0 && (n > (unsigned)min_int / 10 || (n == (unsigned)min_int / 10 && c > (unsigned)min_int % 10)))

n = n * 10 + c;

i++;

}else

}return n * sign;

}

整數轉字串

將輸入的整數轉化為字串。輸入 整數 輸出 指向字串的指標 函式原型 char shuzi2zifu int n include include includechar shuzi2zifu int n else flag 0 int m n while n printf d n count p ch...

字串轉整數

題目 題目也沒給樣例,做起來覺得怪怪的,注意以下幾點之後就ac啦 需要去掉首尾空字元 需要判斷符號 碰到非數字字元就捨棄 include include using namespace std atoi 表示 ascii to integer 把字串轉換成整型數的乙個函式 1 需要去掉首尾空字元 2...

字串轉整數

題目描述 輸入乙個由數字組成的字串,把它轉換成整數並輸出。例如 輸入字串 123 輸出整數123。給定函式原型int strtoint const char str 實現字串轉換成整數的功能,不能使用庫函式atoi。分析與解答 本題考查的實際上就是字串轉換成整數的問題,或者說是要你自行實現atoi函...