两个升序数组合并为一个升序数组,时间复杂度O(n)

/*两个升序数组合并为一个升序数组
*/
#include
//从键盘接受的函数 
void scanfArray(int Array[],int n)
{
	int i;
	for(i=0;i

 

你可能感兴趣的:(算法-基础算法)