leetcode 【 Merge Sorted Array 】python 实现

题目

Given two sorted integer arrays A and B, merge B into A as one sorted array.

Note:
You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B are m and nrespectively.

代码:oj测试通过 Runtime: 58 ms

 1 class Solution:
 2     # @param A  a list of integers
 3     # @param m  an integer, length of A
 4     # @param B  a list of integers
 5     # @param n  an integer, length of B
 6     # @return nothing
 7     def merge(self, A, m, B, n):
 8
 9         index_total = m + n - 1
10         indexA = m-1
11         indexB = n-1
12
13         while indexA >= 0 and indexB >= 0 :
14             if A[indexA] > B[indexB]:
15                 A[index_total] = A[indexA]
16                 indexA -= 1
17             else:
18                 A[index_total] = B[indexB]
19                 indexB -= 1
20             index_total -= 1
21
22         if indexA >= 0:
23             while indexA >= 0:
24                 A[index_total] = A[indexA]
25                 indexA -= 1
26                 index_total -= 1
27         else:
28             while indexB >= 0:
29                 A[index_total] = B[indexB]
30                 indexB -= 1
31                 index_total -= 1

思路

采用最基础的两路归并思想。针对A B两个数组维护两个指针。

这里用到一个技巧是:从后往前遍历。

这样可以不用再开辟一个m+n空间的数组。

时间: 2024-11-15 09:04:30

leetcode 【 Merge Sorted Array 】python 实现的相关文章

[LeetCode] Merge Sorted Array [22]

题目 Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B ar

LeetCode——Merge Sorted Array

Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B are m

LeetCode: Merge Sorted Array [088]

[题目] Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B

Leetcode:Merge Sorted Array 归并排序

Sorted Array: Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in

Leetcode: Merge Sorted Array

题目: Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B a

[Leetcode] Merge Sorted Array (C++)

题目: Given two sorted integer arrays A and B, merge B into A as one sorted array. Note:You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B ar

(每日算法)LeetCode -- Merge Sorted Array (合并有序数组)

Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B are m

(LeetCode)Merge Sorted Array --- 归并数组

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2. The number of elements init

LeetCode—Merge Sorted Array两个有序数组排序

Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B are m

Array——LeetCode——Merge Sorted Array

[学到的知识点--当有两个判断时,谁在外面谁在里面]1.两个判断 判断一:a和b是否会超出m和n 判断二:nums1[a]大,还是nums2[b]大2.很显然判断一的优先级大于判断二-----------------------------------------------------------------------------------------------------[反思]1.审题,题目说了nums1有足够的空间----------------------------------