[Arrays]D. Liang 6.12 Reversing an array.c

Description

Write a function to reverses an array using the following function header:

void reverse(int array[], int size)

Hint

You should submit the implementation of the function but do not submit the main() function.
Problem Source: 程序设计I Chapter6 Arrays

source.h

//
// Created by Tshang on 2019/9/18.
//

#ifndef INC_1092_SOURCE_H
#define INC_1092_SOURCE_H

void reverse(int array[], int size);

#endif //INC_1092_SOURCE_H

My code:

//   Date:2020/4/18
//   Author:xiezhg5
void reverse( int array[],int size) { //数组的逆序 
	int i,temp;
	for(i=0; i<size/2; i++) {
		//交换的思想只交换到中间一个数 
		temp=array[i];
		//第1个和第(size-1)个 交换 
		array[i]=array[size-1-i];
		array[size-1-i]=temp;
	}
}
发布了245 篇原创文章 · 获赞 255 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_45645641/article/details/105602315