STL 中 nth_element()用法
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
头文件:#include<algorithm>
用法:nth_element( start , start+k , start+n );
作用:将第k大的元素放在第k个位置(0,1,2,...,k),并将比它小的放在它左面,比它大的放在它右面,不保证有序。
代码实例:
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int a[] = {0,1,5,3,2,4,6};
nth_element(a,a+3,a+7);
for(int i = 0;i < 7;i++) cout << a[i] << " ";
return 0;
}
运行截图:
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:2 个月前 )
c345bb45
6 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)