随意输入一串数,将其中的偶数项逆序输出,奇数项的顺序不变。从两头向中间找偶数,找到了就交换。下面附上C++代码。

#define _CRT_SECURE_NO_WARNINGS

#include

#include

#include"string.h"

struct MyStruct //用成员a 存放整数数组,成员b存放整数的个数

{

int *a = new int[100]; 

int b = 0;

};

void exc(int *aa, int *bb)//交换

int t; 

t = *aa; 

*aa = *bb;

*bb = t;

}

void exchangeEven(int *s, int n)//偶数项逆序,奇数项不变

{

int i = 0, j = n - 1, k = n - 1;

for (int i = 0; i

{

if (i == j) break; 

else

{

if (*(s + i) % 2 != 0) continue; 

else 

for (j = k; j>i; j--) 

if (*(s + j) % 2 != 0) continue; 

else

{

exc(s + i, s + j);

k = --j;

break;

}

}

}

MyStruct getab(char *s)//函数getab()返回MyStruct形结构体

MyStruct cd;

char *delim = " "; 

char *p = strtok(s, delim);//第一次调用strtok,分割得到第一个整数的字符串

while (p != NULL)//当返回值不为null时,继续循环

{

*(cd.a+cd.b) = atoi(p);//atoi()为系统函数,用于将字符串转化为整数

cd.b++;

p = strtok(NULL, delim);//继续调用strtok,分解剩下的字符串

return cd;

}

void main()

char s[100]; //存放输入的整数,将所有的全部看成字符串

printf("输入一串整数,我会将其中的偶数项逆序输出:\n"); 

gets(s); 

MyStruct ab = getab(s);//getab()返回结构体ab,ab的成员为a与b,a存放返回后的整数数组,b存放整数的个数

exchangeEven(ab.a, ab.b);//exchangeEven()用于交换其中的偶数项 

printf("偶数项逆序输出的结果为:\n");

for (int i = 0; i < ab.b; i++)

printf("%d ", *(ab.a + i));

printf("\n"); 

delete []ab.a;

}

你可能感兴趣的:(关于C++,C++)