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

字符串算法

时间:2014-10-26 16:52:45      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   log   bs   算法   

字符串逆转

void reverse(char* str,int beg,int end)
{
    int times = (end- beg +1)/2;
    while(times > 0)
    {
        char tmp = str[end];
        str[end--] = str[beg];
        str[beg++] = tmp;
        times--;
    }
}

 

字符串算法

标签:style   blog   color   ar   sp   div   log   bs   算法   

原文地址:http://www.cnblogs.com/kangbry/p/4052127.html

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