91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetcode(1)--338.Counting Bits

發布時間:2020-08-04 00:40:56 來源:網絡 閱讀:345 作者:momo462 欄目:編程語言

LeetCode 338. Counting Bits

Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and return them as an array.

Example:

For num = 5 you should return [0,1,1,2,1,2].

Follow up:

It is very easy to come up with a solution with run time O(n*sizeof(integer)). But can you do it in linear time O(n) /possibly in a single pass?

Space complexity should be O(n).

Can you do it like a boss? Do it without using any builtin function like __builtin_popcount in c++ or in any other language.

Hint:

  1. You should make use of what you have produced already.

  2. Divide the numbers in ranges like [2-3], [4-7], [8-15] and so on. And try to generate new range from previous.

  3. Or does the odd/even status of the number help you in calculating the number of 1s?

題目大意:

給定一個非負整數num。對于每一個滿足0 ≤ i ≤ num的數字i,計算其數字的二進制表示中1的個數,并以數組形式返回。

測試用例如題目描述。

進一步思考:

很容易想到運行時間 O(n*sizeof(integer)) 的解法。但你可以用線性時間O(n)的一趟算法完成嗎?

空間復雜度應當為O(n)。

你可以像老板那樣嗎?不要使用任何內建函數(比如C++的__builtin_popcount)。

提示:

  1. 你應當利用已經生成的結果。

  2. 將數字拆分為諸如 [2-3], [4-7], [8-15] 之類的范圍。并且嘗試根據已經生成的范圍產生新的范圍。

  3.  數字的奇偶性可以幫助你計算1的個數嗎?

解題思路:

解法I 利用移位運算:

遞推式:ans[n] = ans[n >> 1] + (n & 1)
//c++版本
class Solution
{
 public:
      vector<int>countBits(int num)
      {
          //一個數組有(0~num)即num+1個元素,初始化為0
          vector<int> v1(num+1,0);
          for(int i=1;i<=num;i++)
          {
              v1[i]=v1[i>>1]+(i&1);
          }
      }  
}

15 / 15 test cases passed.

Status: Accepted

Runtime: 124 ms

Submitted: 0 minutes ago

解法II 利用highbits運算:

遞推式:ans[n] = ans[n - highbits(n)] + 1

其中highbits(n)表示只保留n的最高位得到的數字。

highbits(n) = 1<<int(math.log(x,2))
math.log()不是c++/c的函數,java中有

例如:

highbits(7) = 4   (7的二進制形式為111)

highbits(10) = 8 (10的二進制形式為1010)


解法III 利用按位與運算:

遞推式:ans[n] = ans[n & (n - 1)] + 1
//c++版本
class Solution
{
 public:
      vector<int>countBits(int num)
      {
          //一個數組有(0~num)即num+1個元素,初始化為0
          vector<int> v1(num+1,0);
          for(int i=1;i<=num;i++)
          {
              v1[i]=v1[n&(n-1)]+1;
          }
      }  
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沧源| 开原市| 抚州市| 吴江市| 英山县| 上饶县| 安吉县| 镇江市| 子长县| 顺昌县| 星座| 达州市| 友谊县| 乐业县| 长宁区| 谢通门县| 响水县| 南雄市| 嵩明县| 闵行区| 双牌县| 新田县| 政和县| 调兵山市| 明星| 同心县| 容城县| 根河市| 石柱| 开远市| 武城县| 丹江口市| 广宗县| 云南省| 静安区| 曲水县| 玉林市| 娱乐| 五华县| 隆尧县| 安福县|