整型數組處理演算法(六)合并兩個數組

來源:互聯網
上載者:User

合并兩個數組中的元素到整型數組c,要求去除重複元素並保持c有序(非降序)。
例子如下:
a = 2,3,4,6,8,9
b = 7,9,10

// 合并兩個含有nA、nB個元素的有序數組void Merge(int *a, int *b, int *c, int nA, int nB, int& nCout){    int i = 0 ;    int j = 0 ;    int k = 0 ;    while (i < nA && j < nB)    {        if (a[i] < b[j])// 如果a的元素小,則插入a中元素到c        {            c[k++] = a[i] ;            ++i ;nCout++;        }        else if (a[i] == b[j])// 如果a和b元素相等,則插入二者皆可,這裡插入a        {            c[k++] = a[i] ;            ++i ;            ++j ;nCout++;        }        else // a[i] > b[j] // 如果b中元素小,則插入b中元素到c        {            c[k++] = b[j] ;            ++j ;nCout++;        }    }    if (i == nA) // 若a遍曆完畢,處理b中剩下的元素    {        for (int m = j; m < nB; ++m){            c[k++] = b[m] ;nCout++;}    }    else//j == n, 若b遍曆完畢,處理a中剩下的元素    {        for (int m = i; m < nA; ++m){            c[k++] = a[m] ;nCout++;}    }}

測試代碼如下:

int main(){int* a= new int[6];int* b= new int[3];a[0]=2;a[1]=3;a[2]=4;a[3]=6;a[4]=8;a[5]=9;b[0]=7;b[1]=9;b[2]=10;int nOut = 0;int* output = new int[12];Merge(a, b, output, 6, 3, nOut);for (int i=0; i<nOut; i++){cout << output[i] << "," ;}cout << endl;delete[] a;a=NULL;delete[] b;b=NULL;delete[] output;output=NULL;cout << endl;return 0;}

測試結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.