LeetCode 1356. 根据数字二进制下 1 的数目排序
题目链接:https://leetcode-cn.com/problems/sort-integers-by-the-number-of-1-bits/
代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | /* 给你一个整数数组 arr 。请你将数组中的元素按照其二进制表示中数字 1 的数目升序排序。 如果存在多个数字二进制中 1 的数目相同,则必须将它们按照数值大小升序排列。 请你返回排序后的数组。 */ #include<iostream> #include<vector> #include<algorithm> #include<set> using namespace std; class NumInfo { public : int num; int num_1; public : NumInfo( int n) :num(n) { num_1 = get_num_1(num); } bool operator <( const NumInfo& numInfo) const { if ( this ->num_1 < numInfo.num_1) { return true ; } else if ( this ->num_1 == numInfo.num_1) { if ( this ->num < numInfo.num) { return true ; } else { return false ; } } else { return false ; } } private : int get_num_1( int n) { int count = 0; while (n) { ++count; n = (n - 1) & n; } return count; } }; class Solution { public : vector< int > sortByBits( const vector< int >& arr) { if (arr.empty()) { vector< int > result; return result; } vector<NumInfo> numVect; for ( auto num : arr) { NumInfo numInfo(num); numVect.push_back(numInfo); } sort(numVect.begin(), numVect.end()); vector< int > result; for ( auto num_info : numVect) { result.push_back(num_info.num); } return result; } }; int main() { vector< int > arr{ 10,100,1000,10000 }; Solution solution; vector< int > result = solution.sortByBits(arr); for ( auto num : result) { cout << num << " " ; } return 0; } |
分类:
C++语言编程
, LeetCode题目
posted on 2022-01-09 22:44 xcxfury001 阅读(28) 评论(0) 编辑 收藏 举报
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!