用vector以及lower_bound函式
關鍵程式片段如下:
if(v.empty()) v.push_back(n); else { //int pos=-v.begin(); v.insert(lower_bound(v.begin(),v.end(),n),n); }