void merge(int* nums1, int m, int* nums2, int n) {
//big after
//total length ,the length of nums1 after
int index=m+n-1;
//get the last element of nums1 before
int nums1index=m-1;
//get the last element of nums1 before
int nums2index=n-1;