码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】反转字符串

时间:2020-09-17 17:36:43      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:back   ring   反转字符串   oid   one   round   反转   star   etc   

 

void reverseString(char* s, int sSize){
    int start =0,end = sSize-1,temp;
    while(start < end) temp = s[start],s[start++] = s[end],s[end--] = temp;
}

 

【leetcode】反转字符串

标签:back   ring   反转字符串   oid   one   round   反转   star   etc   

原文地址:https://www.cnblogs.com/ganxiang/p/13628366.html

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