摘要: class Solution { public: int getSum(int a, int b) { while(b!=0){ // 进位为0的时候停止 // 注意这个unsigned int 很重要 unsigned int carry = (unsigned int) (a&b)<<1; // 阅读全文
posted @ 2021-09-26 21:03 三一一一317 阅读(31) 评论(0) 推荐(0)