LeetCode_1021_ Complement of Base 10 Integer

求十進制數的反碼 通過觀察可知,輸入與輸出的關係爲: Input+Output= 其中n爲使Input+Output成立的最小m值 class Solution { public: int bitwiseComplement(int N) { if(N<=1) return 1-N; int cnt=1; while(cnt<=N) cnt=cnt*2;
相關文章
相關標籤/搜索