希尔-冒泡排序(慢)
public void shellBubbleSort(int[] nums){
for (int step = nums.length/2; step > 0 ; step /= 2) {
for (int i = step; i < nums.length; i++) {
for (int j = i-step; j >= 0; j -= step) {
if(nums[j] > nums[j+step]){
int temp = nums[j];
nums[j] = nums[j+step];
nums[j+step] = temp;
}
}
}
}
}
希尔-插入排序(快)
public void shellInsertSort(int[] nums){
for (int step = nums.length/2; step > 0; step /= 2) {
for (int i = step; i < nums.length; i++) {
int j = i;
int insertNum = nums[i];
while(j-step >= 0 && nums[j-step] > insertNum){
nums[j] = nums[j-step];
j-=step;
}
nums[j] = insertNum;
}
}
}
PS:引入步长减少数字交换次数提高效率
上面是“java常见排序算法——希尔排序(附代码示列)”的全面内容,想了解更多关于 后端开发 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4259.html
workflows工作流
庭院,彩色玫瑰,云雾笼罩comfyui工作流
一只蚂蚁在花丛中找食物ComfyUI工作流
王家卫电视剧繁花海报效果comfyui工作流
一个骷髅海盗船长ComfyUI工作流
一只蚊子被嵌在琥珀中ComfyUI工作流
哈利波特魔法ComfyUI工作流
一个熙熙攘攘的市场场景,里面摆满了南瓜
一碗热气腾腾的拉面ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

利用js做一个炫酷音乐背景效果
css3搭积木叠加图形
制作一个好玩的倒计时
css3卡片动态滑动效果
纯CSS饼图效果
3d文字动画效果
css3画弹珠,可以滚动!











