c++ vector容器 插入元素时实现自动排序

转载自:https://blog.csdn.net/su20145104009/article/details/70955760

#include 
#include 
#include 
#include 
using namespace std;
#define N 10000
vectorhash[N+10];
void insertHash(int x)
{
    hash[0].insert(lower_bound(hash[0].begin(),hash[0].end(),x),x);
} 
void out()
{
    //输出结果为 1 2 4 6 7 9 10
    for(int i=0;i

 

你可能感兴趣的:(#,STL)