/*Given an array of N decimal integers of different lengths,
describe how to sort them in O(N + K) time,
where K is the total number of digits overall all the N integers. */
//将十进制数字转为int类型的值。int固定为32位。所以可以按照位进行低位优先的排序
public class Exercise3 {
private static int R = 2;//二进制只要2个符号
private static int[] aux; //辅助数组
private static void Sort(int[] a) {
if(a.length < 2) return;
aux = new int[a.length];
for(int w=0;w<32;w++){
int[] count = new int[R+1];
//计算频率
for(int i=0;i<a.length;i++)
count[bitAt(a[i],w)+1]++;
//将频率转化为索引,因为只有0和1,所以可以免去计算
//分类
for(int i=0;i<a.length;i++){
aux[count[bitAt(a[i],w)]++] = a[i];
}
//回写
for(int i=0;i<a.length;i++)
a[i] = aux[i];
}
}
//取得一个bit位
private static int bitAt(int num, int w) {
int rs = num & ((in
对int数组采用低位优先排序
最新推荐文章于 2023-03-17 10:32:43 发布
该博客介绍了一种针对不同长度的十进制整数数组的排序算法,可以在O(N + K)的时间复杂度内完成,其中K是所有整数的总位数。通过将数字转换为32位int类型,并按照位进行低位优先排序,实现了高效排序。博客提供了一个名为`Sort`的方法,使用辅助数组`aux`,并遍历32位进行计数、分类和回写操作。此外,还包含一个辅助方法`bitAt`用于获取给定位的值。在main方法中,博主用随机生成的整数数组测试了该排序算法。
摘要由CSDN通过智能技术生成