1. 程式人生 > >算法中的反轉問題

算法中的反轉問題

clas pre 類型 其中 要掌握 code () amp last

1 void reverse(vector<int>& word){
2         size_t first, last;
3         first = 0;
4         last = word.size();
5         while ((first != last) && (first != --last))
6             std::swap(word[first++], word[last]);
7     }

反轉這類題目多和其他類型的題目相結合,難度不大,其中最重要的是要掌握對字符串,數組的反轉操作。

算法中的反轉問題