如何将两个排序数组合并为一个排序数组?

编程入门 行业动态 更新时间:2024-10-25 15:22:06
本文介绍了如何将两个排序数组合并为一个排序数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这是我在一次采访中被问到的,这是我提供的解决方案:

This was asked of me in an interview and this is the solution I provided:

public static int[] merge(int[] a, int[] b) { int[] answer = new int[a.length + b.length]; int i = 0, j = 0, k = 0; while (i < a.length && j < b.length) { if (a[i] < b[j]) { answer[k] = a[i]; i++; } else { answer[k] = b[j]; j++; } k++; } while (i < a.length) { answer[k] = a[i]; i++; k++; } while (j < b.length) { answer[k] = b[j]; j++; k++; } return answer; }

有没有更有效的方法来做到这一点?

Is there a more efficient way to do this?

修正长度方法.

推荐答案

一个小改进,但是在主循环之后,您可以使用 System.arraycopy 复制任一输入数组的尾部到达另一个的尽头.不过,这不会改变您的解决方案的 O(n) 性能特征.

A minor improvement, but after the main loop, you could use System.arraycopy to copy the tail of either input array when you get to the end of the other. That won't change the O(n) performance characteristics of your solution, though.

更多推荐

如何将两个排序数组合并为一个排序数组?

本文发布于:2023-11-30 10:55:46,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1649724.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:组合   数组   并为   如何将   两个

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!