LeetCode 338. Counting Bits
創(chuàng)新互聯(lián)建站長期為上1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為桑植企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計、做網(wǎng)站,桑植網(wǎng)站改版等技術(shù)服務(wù)。擁有十余年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。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:
You should make use of what you have produced already.
Divide the numbers in ranges like [2-3], [4-7], [8-15] and so on. And try to generate new range from previous.
Or does the odd/even status of the number help you in calculating the number of 1s?
給定一個非負(fù)整數(shù)num。對于每一個滿足0 ≤ i ≤ num的數(shù)字i,計算其數(shù)字的二進(jìn)制表示中1的個數(shù),并以數(shù)組形式返回。
測試用例如題目描述。
進(jìn)一步思考:
很容易想到運行時間 O(n*sizeof(integer)) 的解法。但你可以用線性時間O(n)的一趟算法完成嗎?
空間復(fù)雜度應(yīng)當(dāng)為O(n)。
你可以像老板那樣嗎?不要使用任何內(nèi)建函數(shù)(比如C++的__builtin_popcount)。
提示:
你應(yīng)當(dāng)利用已經(jīng)生成的結(jié)果。
將數(shù)字拆分為諸如 [2-3], [4-7], [8-15] 之類的范圍。并且嘗試根據(jù)已經(jīng)生成的范圍產(chǎn)生新的范圍。
3. 數(shù)字的奇偶性可以幫助你計算1的個數(shù)嗎?
解法I 利用移位運算:
遞推式:ans[n] = ans[n >> 1] + (n & 1)
//c++版本 class Solution { public: vectorcountBits(int num) { //一個數(shù)組有(0~num)即num+1個元素,初始化為0 vector 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的最高位得到的數(shù)字。
highbits(n) = 1<例如:
highbits(7) = 4 (7的二進(jìn)制形式為111) highbits(10) = 8 (10的二進(jìn)制形式為1010)解法III 利用按位與運算:
遞推式:ans[n] = ans[n & (n - 1)] + 1//c++版本 class Solution { public: vectorcountBits(int num) { //一個數(shù)組有(0~num)即num+1個元素,初始化為0 vector v1(num+1,0); for(int i=1;i<=num;i++) { v1[i]=v1[n&(n-1)]+1; } } } 創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨有T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務(wù)器買多久送多久。
分享標(biāo)題:leetcode(1)--338.CountingBits-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/dcohii.html