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

反转字符串(c语言)

时间:2014-05-26 01:28:27      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

简单的反转字符串实现

bubuko.com,布布扣
#include <stdio.h>
#include "string.h"

void exchange(char *string, int c1, int c2);
void revertString(char *string, int iStart, int iEnd);

int main(int argc, const char * argv[])
{

    // insert code here...
    printf("Begin>>>!\n");
    
    char originalString[100] = "abcdef";
    printf("%s\n", originalString);
    size_t len = strlen(originalString);
    revertString(originalString, 0, (int)(len-1));
    printf("%s\n", originalString);
    
    
    return 0;
}

void revertString(char *string, int iStart, int iEnd)
{
    while (iStart < iEnd) {
        exchange(string, iStart, iEnd);
        iStart++;
        iEnd--;
    }
}

void exchange(char *string, int c1, int c2)
{
    char tmp = string[c1];
    string[c1] = string[c2];
    string[c2] = tmp;
}
bubuko.com,布布扣

 

反转字符串(c语言),布布扣,bubuko.com

反转字符串(c语言)

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/huangzizhu/p/3749837.html

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