时代Java,与您同行!
关注微信公众号,关注前沿技术,微信搜索:nowjava或时代Java,也可点击这里扫码关注
时代Java
首页
集册
文章
实例
项目
快讯
时代+
手册
下载
Jar查找
登录
注册
Java 使用合并排序对数组排序。
Java 使用合并排序对数组排序。
欢马劈雪
工程师 (已认证)
原创分享签约作者
发表于
实例源码
订阅
463
查看 / 运行 实例源码
使用合并排序对数组排序。
实例源码:
源代码:
执行
执行中...
import java.security.SecureRandom; import java.util.Arrays; /** 时 代 J a v a 公 众 号 - N o w J a v a . c o m **/ public class Main { // calls recursive split method to begin merge sorting public static void mergeSort(int[] data) { sortArray(data, 0, data.length - 1); // sort entire array } // splits array, sorts subarrays and merges subarrays into sorted array private static void sortArray(int[] data, int low, int high) /** from 时代Java公众号 - nowjava.com**/ { // test base case; size of array equals 1 if ((high - low) >= 1) // if not base case { int middle1 = (low + high) / 2; // calculate middle of array int middle2 = middle1 + 1; // calculate next element over // output split step System.out.printf("split: %s%n", subarrayString(data, low, high)); System.out.printf(" %s%n", subarrayString(data, low, middle1)); System.out.printf(" %s%n%n",subarrayString(data, middle2, high)); // split array in half; sort each half (recursive calls) sortArray(data, low, middle1); // first half of array sortArray(data, middle2, high); // second half of array // merge two sorted arrays after split calls return merge (data, low, middle1, middle2, high); } } // merge two sorted subarrays into one sorted subarray private static void merge(int[] data, int left, int middle1, int middle2, int right){ int leftIndex = left; // index into left subarray int rightIndex = middle2; // index into right subarray int combinedIndex = left; // index into temporary working array int[] combined = new int[data.length]; // working array // output two subarrays before merging System.out.printf("merge: %s%n", subarrayString(data, left, middle1)); System.out.printf(" %s%n", subarrayString(data, middle2, right)); // merge arrays until reaching end of either while (leftIndex <= middle1 && rightIndex <= right) { // place smaller of two current elements into result // and move to next space in arrays if (data[leftIndex] <= data[rightIndex]) combined[combinedIndex++] = data[leftIndex++]; else combined[combinedIndex++] = data[rightIndex++]; } // if left array is empty if (leftIndex == middle2) // copy in rest of right array while (rightIndex <= right) combined[combinedIndex++] = data[rightIndex++]; else // right array is empty // copy in rest of left array while (leftIndex <= middle1) combined[combinedIndex++] = data[leftIndex++]; // copy values back into original array for (int i = left; i <= right; i++) data[i] = combined[i]; // output merged array System.out.printf(" %s%n%n", subarrayString(data, left, right)); } // method to output certain values in array private static String subarrayString(int[] data, int low, int high) { StringBuilder temporary = new StringBuilder(); // output spaces for alignment for (int i = 0; i < low; i++) temporary.append(" "); /**代码未完, 请加载全部代码(NowJava.com).**/
编辑/阅读全部代码
执行结果:
Unsorted array:
[54, 20, 14, 99, 71, 96, 52, 56, 67, 86]
split: 54 20 14 99 71 96 52 56 67 86
54 20 14 99 71
96 52 56 67 86
split: 54 20 14 99 71
54 20 14
99 71
split: 54 20 14
54 20
14
split: 54 20
54
20
merge: 54
20
20 54
merge: 20 54
14
14 20 54
split: 99 71
99
71
merge: 99
71
71 99
merge: 14 20 54
71 99
14 20 54 71 99
split: 96 52 56 67 86
96 52 56
67 86
split: 96 52 56
96 52
56
split: 96 52
96
52
merge: 96
52
52 96
merge: 52 96
56
52 56 96
split: 67 86
67
86
merge: 67
86
67 86
merge: 52 56 96
67 86
52 56 67 86 96
merge: 14 20 54 71 99
52 56 67 86 96
14 20 52 54 56 67 71 86 96 99
Sorted array:
[14, 20, 52, 54, 56, 67, 71, 86, 96, 99]
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。
编辑于
2020-03-26 09:23:27
2020-03-26 09:23:27
分享
分享文章到朋友圈
分享文章到 QQ
分享文章到微博
复制文章链接到剪贴板
扫描二维码
关注时代Java
实例源码
实例源码
订阅
订阅专栏
Java 判断文件是否为文本文件及获取文件编码格式的方法实例
bootstrap 实例演示下拉菜单(Dropdown)插件用法。
HashSet、LinkedHashSet、TreeSet类存储元素的自动排序规则实例测试
html css 对于 body和h1设置的实例源码
Java 获取在线网页的源代码
Java HashSet添加、迭代输出字符串的完整示例代码
Java 随机整数数组
html css 设置背景图片定位并且不平铺
扫描二维码
关注时代Java
返回顶部