码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-01-07 23:36:54      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:c语言   string   

函数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

标签:c语言   string   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!