首页 > 编程语言 > 详细

【c语言】实现翻转字符串函数reverse_string

时间:2015-01-07 23:36:44      阅读:561      评论:0      收藏:0      [点我收藏+]
函数reverse_string(char * string)
实现:将参数字符串中的字符反向排列。

要求:不能使用C函数库中的字符串操作函数。


#include <stdio.h>
#include<stdlib.h>
#define SWAP(a,b,c) ((c)=(a),(a)=(b),(b)=(c))

void  reverse_string(char * s)
{
	char *p=s;
	char temp;
	while(*p) p++;  //让p指向最后一个字符
	p--;
	while(s<=p)
	{
		SWAP(*s,*p,temp);   //交换两个字符,宏函数实现
		s++;
		p--;
	}
}

void main()
{
	char s[]="abcdefghigklmn";
	reverse_string(s);
	puts(s);
}


【c语言】实现翻转字符串函数reverse_string

原文:http://blog.csdn.net/a781558066/article/details/42504211

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!