比如vector _rows中已经有了{0,1,3,5}
这是要放入4,则std::lower_bound( _rows.begin(), _rows.end(), 4);将会返回5,就是应该插入的那个位置后面的那个值
然后_rows.insert( iter, 4);这句将按照从小到大的顺序将4放进去,最后的顺序是{0,1,3,4,5}

来一个程序更清楚

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> way; //定义一个向量
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
int b;
cin>>b;
way.insert(lower_bound(way.begin(),way.end(),b),b); //********
cout<<"insert sort\n";
for(int i=0;i<way.size();i++)
cout<<way[i]<<" ";
cout<<endl;
}
return 0;
}
结果显示为:
insert sort
1
3
insert sort
1 3
5
insert sort
1 3 5
7
insert sort
1 3 5 7
2
insert sort
1 2 3 5 7
4
insert sort
1 2 3 4 5 7
6
insert sort
1 2 3 4 5 6 7
1
insert sort
1 1 2 3 4 5 6 7
2
insert sort
1 1 2 2 3 4 5 6 7

Process returned 0 (0x0) execution time : 12.245 s
Press any key to continue.