题目描述:
给定两个排序后的数组 A 和 B,其中 A 的末端有足够的缓冲空间容纳 B。 编写一个方法,将 B 合并入 A 并排序。
初始化 A 和 B 的元素数量分别为 m 和 n。
示例:
输入:
A = [1,2,3,0,0,0], m = 3
B = [2,5,6], n = 3
输出: [1,2,2,3,5,6]
解题思路1:
- 当数组A的元素下标大于A元素的数量m时,将数组B的元素依次赋值给A后面的位置。
- 返回排序
代码1:
class Solution(object):
def merge(self, A, m, B, n):
"""
:type A: List[int]
:type m: int
:type B: List[int]
:type n: int
:rtype: None Do not return anything, modify A in-place instead.
"""
i = 0
for index, num in enumerate(A):
if index > m-1 and i < n:
A[index] = B[i]
i += 1
return sorted(A)
结果为: [1, 2, 2, 3, 5, 6]
class Solution(object):
def merge(self, A, m, B, n):
"""
:type A: List[int]
:type m: int
:type B: List[int]
:type n: int
:rtype: None Do not return anything, modify A in-place instead.
"""
for index in range(n):
A[m + index] = B[index]
A = sorted(A)
return A
s = Solution()
A = [1, 2, 3, 0, 0, 0]
B = [2, 5, 6]
m = 3
n = 3
print(s.merge(A, m, B, n))
注意:
在leetcode编译栏中,输入的正确代码形式应该是:
class Solution(object):
def merge(self, A, m, B, n):
"""
:type A: List[int]
:type m: int
:type B: List[int]
:type n: int
:rtype: None Do not return anything, modify A in-place instead.
"""
i = 0
for index, num in enumerate(A):
if index > m-1 and i < n:
A[index] = B[i]
i += 1
A.sort()
特别注意返回值的写法!