public void countSort(int[] nums){ int max = Integer.MIN_VALUE; int min = Integer.MAX_VALUE; for(int num : nums){ max = Math.max(max, num); min = Math.min(min, num); } int[] countMap = new int[max-min+1]; for(int num : nums){ countMap[num-min]++; } int i = 0; int j = 0; while(i < nums.length && j < countMap.length){ if(countMap[j] > 0){ nums[i] = j+min; i++; countMap[j]--; } else { j++; } } }
PS:按顺序统计每个数出现次数。
上面是“java常见排序算法——计数排序(附代码示列)”的全面内容,想了解更多关于 后端开发 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4261.html
workflows工作流
一只可爱的小鸟在飞翔ComfyUI工作流
文生图工作流:一幅海底睡莲,碧海蓝天comfyui工
一只黑色的小猫在童话森林里嗅着一朵发光的外星花
一个外国人在吹奏萨克斯ComfyUI工作流
斗鸡场威武雄鸡ComfyUI工作流
红伞伞蓝杆杆云南蘑菇群ComfyUI工作流
一尊白玉猴王ComfyUI工作流
一只穿着黑色蝴蝶结西装可爱橙色小猫
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!