国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

[LeetCode]78.Subsets

2019-11-10 23:22:38
字體:
供稿:網(wǎng)友

原題:

Given a set of distinct integers, nums, return all possible subsets.

Note: The solution set must not contain duplicate subsets.

For example,If nums = [1,2,3], a solution is:

[  [3],  [1],  [2],  [1,2,3],  [1,3],  [2,3],  [1,2],  []]這道題就是生成子集的問題,高中知識,子集個數(shù)為2^n個。所以我的思路是0-2^n的循環(huán),然后將十進(jìn)制數(shù)對應(yīng)到二進(jìn)制,根據(jù)二進(jìn)制的值對應(yīng)到某個元素是否在某個子集中。詳細(xì)代碼(代碼不好,速度有點慢,leetcode上有大神的代碼,估計C語言會快一點?):

class Solution(object):    def subsets(self, nums):        """        :type nums: List[int]        :rtype: List[List[int]]        """        length = len(nums)  # size of nums        result = []         if length == 0:            return result        for x in xrange(0, 2**length):            s = bin(x)            sub = []            n = x            # decimal to binary            for i in xrange(0, length):                if n == 0:                    break                else:                    if n % 2 == 1:                        sub.append(nums[i])                    n = n / 2            result.append(sub)        return result

其中十進(jìn)制to二進(jìn)制的代碼,求余求商,求出的結(jié)果是從低位到高位(對應(yīng)學(xué)的十進(jìn)制轉(zhuǎn)化二進(jìn)制的方式,結(jié)果從下到上排列),上邊用的時候有些許變化:

n = 12PRint bin(n)while n != 0:    print n%2    n = n/2其實python中有十進(jìn)制到二進(jìn)制轉(zhuǎn)化的函數(shù): bin()

bin(x)Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.

轉(zhuǎn)化為了字符串,10 - 0b1010,注意0b也是字符串的內(nèi)容,所以真正的二進(jìn)制字符串是從索引2開始的。


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 永兴县| 元谋县| 松原市| 沙洋县| 沧州市| 唐山市| 大荔县| 慈利县| 美姑县| 玉屏| 庆安县| 新和县| 平定县| 长岭县| 紫云| 克拉玛依市| 咸丰县| 乐业县| 湖南省| 汾阳市| 博湖县| 古蔺县| 呼玛县| 渝北区| 舒兰市| 深圳市| 平昌县| 鄂托克旗| 年辖:市辖区| 兰考县| 轮台县| 普格县| 娄底市| 天柱县| 陕西省| 岗巴县| 湖州市| 芒康县| 松原市| 苍南县| 谢通门县|