代码
#include <type_traits>
class Solution {
public:
void merge(int A[], int m, int B[], int n) {
if(!n) return;
int a = m-1;
int b = n-1;
int index = m + n - 1;
while(a >= 0 && b >= 0){
if(A[a] >= B[b]){
A[index--] = A[a--];
}else{
A[index--] = B[b--];
}
}
//如果B中存在比A中最小的还要小的数 则不会被全部拷贝
while(b >= 0){
A[index--] = B[b--];
}
return;
}
};
标签:index,return,数组,2Fexam%,int,NC22,--,2Fcompany,有序
From: https://www.cnblogs.com/lihaoxiang/p/17958457