【本文链接】
http://www.cnblogs.com/hellogiser/p/reverse-string.html
reverse string
【代码】
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/*
version: 1.0 author: hellogiser blog: http://www.cnblogs.com/hellogiser date: 2014/5/30 */ void swap(char *a, char *b) { char temp = *a; *a = *b; *b = temp; } char *reverse_str(char *str) |
【本文链接】