摘要: class Solution {public: int atoi(const char *str) { // Start typing your C/C++ solution below // DO NOT write int main() function int flag = 0; int plus=0; bool tozero=false; int sum = 0; int sum_num=0; for( const char *p = str; *p != '\0'... 阅读全文
posted @ 2013-05-09 15:24 NinaGood 阅读(178) 评论(0) 推荐(0) 编辑