數據結構與算法-字符串反轉

百度2014筆試題: 字符串反轉,要求不能使用系統函數,參數和返回值都是char指針。html </pre><pre name="code" class="cpp">#include <stdio> char *reverse_str(char *str){ int length=0; char *start=str; //能夠複製指針 while(*start){ //「
相關文章
相關標籤/搜索