摘要:
题意: Implement atoi to convert a string to an integer. (Easy) 分析: 就是注意各种特殊情况,边界情况的判断,见代码注释。 阅读全文
摘要:
题意: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 (Easy) 分析: 思路很简单,注意特殊情况如10,100等和int溢出情况即可; 开始采用的是用一个数组把 阅读全文