class Solution { public: void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) { int r=m+n-1; int l1=m-1; int l2=n-1; while(l1>=0&&l2>=0&&r>=0){ if(nums1[l1]<nums2[l2]){ nums1[r]=nums2[l2]; l2--; }else{ nums1[r]=nums1[l1]; l1--; } r--; } if(l1<0){ for(int i=l2;i>=0;i--){ nums1[i]=nums2[i]; } } } };
原文地址:https://www.cnblogs.com/lettleshel/p/9302533.html
时间: 2024-11-06 09:37:10