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

C++, standard library

时间:2020-02-11 09:29:05      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:font   ini   uri   bsp   ++   standard   span   nbsp   style   

0. 

1. Standard library header <algorithm>

#include <algorithm>  // for sort

std::array<int,10> s = {5,7,2,8,6,1,9,0,3}; // initial an array

std::sort(s.begin(), s.end());  // sort the array

C++, standard library

标签:font   ini   uri   bsp   ++   standard   span   nbsp   style   

原文地址:https://www.cnblogs.com/sarah-zhang/p/12293735.html

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