码迷,mamicode.com
首页 > 编程语言 > 详细

算法中的反转问题

时间:2018-08-20 13:14:45      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:cto   问题   div   掌握   字符   reverse   std   oid   fir   

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     }

反转这类题目多和其他类型的题目相结合,难度不大,其中最重要的是要掌握对字符串,数组的反转操作。

算法中的反转问题

标签:cto   问题   div   掌握   字符   reverse   std   oid   fir   

原文地址:https://www.cnblogs.com/zousantuier/p/9504068.html

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