- 博客(1)
- 收藏
- 关注
原创 两个有序数组归并为一个有序数组(去重)
#include "stdafx.h"#include "stdlib.h"#include "string.h"void Adjust(int a[], int m, int b[], int n){ int c[100]; int i = 0; int j = 0; int k =0; while ((i != m) && (j != n)) {
2013-09-25 00:30:24
610
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人