首页 > 其他 > 详细

16.6.3 STL和string类

时间:2020-08-23 22:56:42      阅读:90      评论:0      收藏:0      [点我收藏+]

string类虽然不是STL的组成部分,但设计它时考虑到了STL。因此它包含:

  1. begin()
  2. end()
  3. rbegin()
  4. rend()
  5. ……

next_permutation( begin_iterator, end_iterator)算法:

### 将区间内容转换为下一种排列方式。

### 对于字符串,排列按照字母递增的顺序进行:

  • 成功:返回true
  • 失败:即已是最后序列,返回false

该算法属于就地算法,自动提供唯一的排列组合。

16.6.3 STL和string类

原文:https://www.cnblogs.com/suui90/p/13550704.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!