标签:index 字符 string 剑指offer solution 整数 字符串转换 style div
class Solution { public: int StrToInt(string str) { int flag,index=0; if(str[0]==‘+‘){ flag=1; index++; } if(str[0]==‘-‘){ flag=-1; index++; } int sum=0; for(;index<str.length();index++) { if(!(str[index]>=‘0‘&&str[index]<=‘9‘)) return 0; sum=sum*10+(str[index]-‘0‘); } return sum*flag; } };
标签:index 字符 string 剑指offer solution 整数 字符串转换 style div
原文地址:http://www.cnblogs.com/159269lzm/p/7260891.html