Problem: Write a function that takes an unsigned integer and returns the number of ’1’ bits it has (also known as the Hamming weight).
For example, the 32-bit integer ’11’ has binary representation 00000000000000000000000000001011, so the function should return 3.
思路
使用移位操作,每次将最后的最低位累加
我想说一模一样的代码,Java和C++的执行效率真的相差挺大
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
class Solution { public: inthammingWeight(uint32_t n){ int i=0; int sum=0; for(;i<32;i++) { sum+=n&0x1; n=n>>1; } return sum; } };
the Runetime is 10ms
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
publicclassSolution{ // you need to treat n as an unsigned value publicinthammingWeight(int n){ int i=0; int sum=0; for(;i<32;i++) { sum+=n&0x1; n=n>>1; } return sum; } }
Problem: Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.
OJ’s undirected graph serialization: Nodes are labeled uniquely.
We use # as a separator for each node, and , as a separator for node label and each neighbor of the node. As an example, consider the serialized graph {0,1,2#1,2#2,2}.
The graph has a total of three nodes, and therefore contains three parts as separated by #.
First node is labeled as 0. Connect node 0 to both nodes 1 and 2.
Second node is labeled as 1. Connect node 1 to node 2.
Third node is labeled as 2. Connect node 2 to node 2 (itself), thus forming a self-cycle.