将数组中所有奇数移动到所有偶数之前的算法

// 2016_3_Aarry.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include 
#define SIZE 10


void Reverse(int* arr,int len)
{
	int i=0,j=len-1,temp;
	while (i

 

你可能感兴趣的:(考研真题,Visual,C++开发)