一、函数、函数指针及函数对象 1.1 函数 函数(function)是把一个语句序列(函数体, function body)关联到一个名字和零或更多个函数形参(function parameter)的列表的 C 实体,可以通过返回或者抛…
Thinking in C第二卷笔记之STL算法部分
一、算法
1、back_inserter
template<class Cont> back_insert_iterator<Cont> back_inserter(Cont& x);
back_inserter( )returns a special type of iterator that inserts elements
instead of overwriting the…