leetcode-476
Posted biubiuwham
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-476相关的知识,希望对你有一定的参考价值。
int findComplement(int num) { int move=num; mo|=move>>1; mo|=move>>2; mo|=move>>4; mo|=move>>8; mo|=move>>16; mo|=move>>32; return num^move; }
提交后时间很尴尬,12ms,不确定这个int是多少位的所以直接给了个32位。
说下思路,一个数与它有效位全为1的数异或就能得到它的补数。所以得到全为1数是个关键,从有效位最高位向后一直移位就能得到全为1的数,按照int位向后移位就好了。
以上是关于leetcode-476的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 476. Number Complement
[leetcode-476-Number Complement]
LeetCode(476): Number Complement
leetcode-476-Number Complement