type
status
date
slug
summary
tags
category
icon
password
reverse()逆置
函数:
reverse(起始地址, 末尾地址);
unique()去重
函数:
unique(起始地址, 末尾地址, name);
unique函数去重并不是真正的去重,它是不断的将后面不重复的元素覆盖前面重复的元素,最后返回最后一个不重复的元素的地址。
to_string()转字符串
to_string()
:可将整形转化为字符串,不推荐将浮点型转化为字符串next_permutation()全排列
next_permutation(a+1,a+1+9);
每执行一次按字典顺序排列一次元素。strcmp()字符串大小比较
比较两个字符串,大于返回大于0的值
swap()交换
substr()截取字符串
从a截到b,或从a截到末尾。
partial_sum()序列部分和
计算某个序列局部元素的和
itao()数字转字符
strupr()小写转大写
rotate()旋转序列
fixed 标识符,将双精浮点数转化为非科学计数法输出用
cout<<fixed<<x;
setprecision()控制有效数字位数
- Author:Grimner
- URL:https://tangly1024.com/article/example-26
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!