摘要: https://leetcode.com/problems/reverse-integer/溢出处理,最简洁形式class Solution {public: int reverse(int x) { int res=0; while(x!=0){ ... 阅读全文
posted @ 2015-12-30 16:41 daijkstra 阅读(195) 评论(0) 推荐(0) 编辑