想要使用STL中的常用算法,首先要包含头文件algorithm,此外numeric头文件中也有一些算法。 这里就只介绍一个常用的算法sorttemplate<class &#95;randit="">void sort(_RandIt first, _RandIt last);</class> 该算法可以在一个左闭右开的区间[first, last)中,对容器的目标元素进行从小到大的排序。int a[4] = {3, 4, 2, 1};sort(a, a+4);