码迷,mamicode.com
首页 > 编程语言 > 详细

1356. 根据数字二进制下 1 的数目排序

时间:2020-04-16 15:06:28      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:solution   ==   思路   img   font   inf   sof   def   family   

技术图片

 

 技术图片

技术图片

思路:

sort()函数:

技术图片

 sorted()函数

技术图片

 python中的进制转换内置函数

技术图片

 

本题有两个排序条件:

二进制中‘1’的个数、十进制数值大小,因此用sort()和sorted()都可实现。

代码如下。

 1 class Solution(object):
 2     def sortByBits(self, arr):
 3         """
 4         :type arr: List[int]
 5         :rtype: List[int]
 6         """
 7         arr.sort(key=lambda num: (bin(num)[2:].count(1), num), reverse=False)
 8         return arr
 9 
10     def sortByBits2(self, arr):
11         """
12         :type arr: List[int]
13         :rtype: List[int]
14         """
15         return sorted(arr, key=lambda num: (bin(num)[2:].count(1), num), reverse=False)
16 
17 
18 if __name__ == __main__:
19     solution = Solution()
20     print(solution.sortByBits(arr=[0, 1, 7, 8, 2, 3, 4, 5, 6]))

 

1356. 根据数字二进制下 1 的数目排序

标签:solution   ==   思路   img   font   inf   sof   def   family   

原文地址:https://www.cnblogs.com/panweiwei/p/12712756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!