关注 M r . m a t e r i a l , \color{Violet} \rm Mr.material\ , Mr.material , 更 \color{red}{更} 更 多 \color{blue}{多} 多 精 \color{orange}{精} 精 彩 \color{green}{彩} 彩! 主要专栏内容包括: †《LAMMPS小技巧》: ‾ \textbf…
88. 合并两个有序数组 class Solution {
public:void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {int ii m - 1, jj n - 1, kk (mn) - 1;while(ii > 0 && jj > 0) {if(nums1[ii] > nums2[jj]) nums1[kk--] nums1…