摘要: 看到其他人写的原地翻转字符 void reverseString( char pszText[], int length ) { if (pszText == NULL) return; char temp; for (int i=0;i<length/2;i++) { temp = pszText 阅读全文
posted @ 2011-07-01 11:47 hongweigg 阅读(7) 评论(0) 推荐(0)