1356. Sort Integers by The Number of 1 Bits
package LeetCode_1356 import java.util.* /** * 1356. Sort Integers by The Number of 1 Bits * https://leetcode.com/problems/sort-integers-by-the-number-of-1-bits/description/ * * Given an integer array arr. You have to sort the integers in the array in ascending order by the number of 1's in * their binary representation and in case of two or more integers have the same number of 1's you have to sort * them in ascending order. Return the sorted array. Example 1: Input: arr = [0,1,2,3,4,5,6,7,8] Output: [0,1,2,4,8,3,5,6,7] Explantion: [0] is the only integer with 0 bits. [1,2,4,8] all have 1 bit. [3,5,6] have 2 bits. [7] has 3 bits. The sorted array by bits is [0,1,2,4,8,3,5,6,7] Example 4: Input: arr = [2,3,5,7,11,13,17,19] Output: [2,3,5,17,7,11,13,19] * */ class Solution { fun sortByBits(arr: IntArray): IntArray { val list = arr.sortedWith(Comparator<Int> { a, b -> val countOneA = countOneBit(a) val countOneB = countOneBit(b) if (countOneA - countOneB == 0) { //All integers have 1 bit in the binary representation, //you should just sort them in ascending order. a - b } else { countOneA - countOneB } }) return list.toIntArray() } private fun countOneBit(n_: Int): Int { var n = n_ var count = 0 for (i in 0 until 32) { count += n and 1 n = n shr 1 } return count } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
2019-03-08 git命令学习