C++實現兩個有序數組的合併

#include<iostream> using namespace std; int *SortArry(int *StrA,int lenA, int *StrB, int lenB) { if (StrA == NULL || StrB == NULL) return NULL; int *StrC = new int[lenA + lenB+1]; int i = 0,
相關文章
相關標籤/搜索