首页 > 代码库 > leetcode 题解:Merge Sorted Array(两个已排序数组归并)
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 and n respectively.
说明:无
实现:
精简实现:
1 // 时间复杂度 O(m+n),空间复杂度 O(1) 2 class Solution { 3 public: 4 void merge(int A[], int m, int B[], int n) { 5 int i=m-1,j=n-1,k=m+n-1; 6 while(i>=0&&j>=0)//从后面开始比较归并,直到有一个数组归并完 7 { 8 A[k--]=A[i]>B[j]?A[i--]:B[j--];//将大数赋给A[k] 9 }10 while(j>=0)//若B还没归并完,直接归并到A11 A[k--]=B[j--];12 }13 };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。