lintcode_64.合并排序数组 II

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lintcode_64.合并排序数组 II相关的知识,希望对你有一定的参考价值。

合并两个排序的整数数组A和B变成一个新的数组。

你可以假设A具有足够的空间(A数组的大小大于或等于m+n)去添加B中的元素。

样例

给出 A = [1, 2, 3, empty, empty], B = [4, 5]

合并之后 A 将变成 [1,2,3,4,5]

class Solution:
    """
    @param: A: sorted integer array A which has m elements, but size of A is m+n
    @param: m: An integer
    @param: B: sorted integer array B which has n elements
    @param: n: An integer
    @return: nothing
    """
    def mergeSortedArray(self, A, m, B, n):
        # write your code here
        A[m:m+n] = B[:n]
        A[:m+n] = sorted(A[:m+n])

如果写A = sorted(A[:m+n]) 会报wrong answer,函数中直接给A赋值不会改变A数组中值

 

以上是关于lintcode_64.合并排序数组 II的主要内容,如果未能解决你的问题,请参考以下文章

LintCode 6---合并排序数组 II

LintCode 464 · 整数排序 II

lintcode:寻找旋转排序数组中的最小值 II

LintCode(101)删除排序数组中的重复数字 II

LintCode之合并排序数组

LintCode 101. 删除排序数组中的重复数字 II