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

Cracking the Coding Interview 1-2

时间:2014-08-31 06:03:10      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   log   sp   

#include <iostream>
#include <algorithm>

using namespace std;

void reverse(char* str) {
  int length = strlen(str);
  char* str_head = str;
  char* str_tail = &str[length-1];
  while(str_head < str_tail) swap(*str_head++,*str_tail--);
}

int main(int argc, const char * argv[])
{
  char str[256] = "Hel";
  reverse(str);
  cout << str << endl;
  return 0;
}

 

Cracking the Coding Interview 1-2

标签:style   blog   color   os   io   ar   div   log   sp   

原文地址:http://www.cnblogs.com/vindicated/p/3947218.html

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