2013年5月1日 星期三

面試必備 -- 計算幾個bit為1

計算幾個bit為1

常見基本面試考題
  • 基本bit mask概念
  • 數學概念
程式碼:

while (input) {
    counter++;
    input &= (input -1);
}      

沒有留言:

張貼留言