希尔排序的递归写法
2022/2/9 6:15:03
本文主要是介绍希尔排序的递归写法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package sort; public class ShellSort { public static void sortByRecursive(int[] numbers, int step) { // step 最小只能是1,此时表示相邻两个元素进行比较 if (step<1){ return; } for (int i = step; i < numbers.length; i++) { for (int j = i; j >= step; j -= step) { if (numbers[j] < numbers[j - step]) { Swap.swap(numbers, j, j - step); } } } sortByRecursive(numbers,step/3); } public static int getFirstStep(int[] numbers){ int num = numbers.length; int h = 1; while (h < num / 3) { h = 3 * h + 1; } return h; // h:根据数组的长度取值为 1,4,13,40..... } public static void main(String[] args) { int[] a = {1,3,1,4,5,6}; int firstStep = getFirstStep(a); ShellSort.sortByRecursive(a,firstStep); for (int i = 0; i < a.length; i++) { System.out.print(a[i] + "\t"); } } }
package sort; public class Swap { public static void swap(int[] array, int x, int y){ int tmp = array[x]; array[x] = array[y]; array[y] = tmp; } }
这篇关于希尔排序的递归写法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03Springboot企业级开发资料入门教程
- 2025-01-03SpringBoot企业级开发资料入门教程
- 2025-01-03Springboot微服务资料入门教程
- 2025-01-03Springboot项目开发资料:新手入门教程
- 2025-01-03Springboot项目开发资料:新手入门指南
- 2025-01-03SpringCloud Alibaba资料入门教程
- 2025-01-03SpringCloud Alibaba资料详解与入门教程
- 2025-01-03SpringCloud微服务资料入门教程
- 2025-01-03单元化架构最佳实践指南!
- 2025-01-03SpringCloud项目开发资料入门教程