標題:
lower_bound & upper_bound 練習
[打印本頁]
作者:
tonyh
時間:
2023-10-21 20:54
標題:
lower_bound & upper_bound 練習
本帖最後由 tonyh 於 2025-2-22 19:37 編輯
vector
#include<bits/stdc++.h>
using namespace std;
vector<int> v;
int main()
{
v.push_back(7); //新增元素
v.push_back(2);
v.push_back(1);
v.push_back(3);
v.push_back(11);
v.push_back(5);
sort(v.begin(), v.end()); //基礎排序
for(int i: v)
cout<<i<<" ";
cout<<endl;
cout<<"------------"<<endl;
auto it=lower_bound(v.begin(), v.end(), 7); //大於或等於目標對象的最小值的位址
cout<<*it<<endl; //該位址的值
it=upper_bound(v.begin(), v.end(), 7); //大於目標對象的最小值的位址
cout<<*it<<endl;
cout<<"------------"<<endl;
it=upper_bound(v.begin(), v.end(), 9);
cout<<*it<<endl; //11
cout<<*(--it)<<endl; //7
it=lower_bound(v.begin(), v.end(), 3);
cout<<*(++it)<<endl; //5
cout<<"------------"<<endl;
it=lower_bound(v.begin(), v.end(), 3);
cout<<it-v.begin()<<endl; //取得索引值
it=find(v.begin(), v.end(), 2); //非二分搜尋法, 效能較差, 適合用於未排序的資料。
cout<<it-v.begin()<<endl;
cout<<"------------"<<endl;
it=find(v.begin(), v.end(), 12); //找不到時會回傳end()指向的位址
if(it==v.end())
cout<<"no find"<<endl;
it=upper_bound(v.begin(), v.end(), 12);
if(it==v.end())
cout<<"no find"<<endl;
return 0;
}
//1 2 3 5 7 11
複製代碼
set
#include<bits/stdc++.h>
using namespace std;
set<int> s;
//set<int> s={9,7,5,12,2};
int main()
{
s.insert(9);
s.insert(2);
s.insert(5);
s.insert(2);
s.insert(12);
s.insert(7);
cout<<s.size()<<endl;
cout<<"-----"<<endl;
for(int i: s)
cout<<i<<endl;
cout<<"-----"<<endl;
for(auto it=s.begin(); it!=s.end(); it++)
cout<<*it<<endl;
cout<<"-----"<<endl;
auto it=s.upper_bound(8);
//cout<<it-s.begin()<<endl; //行不通
cout<<*it<<endl;
cout<<*--it<<endl;
cout<<"-----"<<endl;
it=s.upper_bound(13);
if(it==s.end())
cout<<"no find"<<endl;
else
cout<<*it<<endl;
it=--s.lower_bound(2);
if(it==s.end())
cout<<"no find"<<endl;
else
cout<<*it<<endl;
return 0;
}
// 2 5 7 9 12
複製代碼
map
#include<bits/stdc++.h>
using namespace std;
map<int, string> mp;
//map<int, string> mp={{3, "t"},{1, "o"}};
int main()
{
mp[9]="n";
mp[5]="f";
mp[12]="t";
mp[7]="s";
mp[2]="t";
//mp.insert(mp.begin(), {3, "t"});
cout<<mp.size()<<endl;
for(pair<int, string> p: mp)
cout<<p.first<<": "<<p.second<<endl;
cout<<"-------"<<endl;
for(auto it=mp.begin(); it!=mp.end(); it++)
cout<<(*it).first<<": "<<(*it).second<<endl;
cout<<"-------"<<endl;
auto it=mp.upper_bound(8);
cout<<(*it).first<<": "<<(*it).second<<endl;
it=--mp.upper_bound(8);
cout<<(*it).first<<": "<<(*it).second<<endl;
cout<<"-------"<<endl;
it=mp.upper_bound(12);
if(it==mp.end())
cout<<"no find"<<endl;
else
cout<<(*it).first<<": "<<(*it).second<<endl;
it=--mp.lower_bound(2);
if(it==mp.end())
cout<<"no find"<<endl;
else
cout<<(*it).first<<": "<<(*it).second<<endl;
return 0;
}
// 2 5 7 9 12
複製代碼
作者:
王秉鈞
時間:
2023-10-28 19:51
#include<bits/stdc++.h>
using namespace std;
set<int> s;
int main()
{
s.insert(9);
s.insert(2);
s.insert(5);
s.insert(2);
s.insert(12);
s.insert(7);
cout<<s.size()<<endl;
cout<<"-----"<<endl;
for(int i:s)
cout<<i<<endl;
cout<<"-----"<<endl;
for(auto it=s.begin();it!=s.end();it++)
cout<<*it<<endl;
cout<<"-----"<<endl;
auto it=s.upper_bound(8);
cout<<*it<<endl;
cout<<*--it<<endl;
cout<<"-----"<<endl;
it=s.upper_bound(13);
if(it==s.end())
cout<<"no find"<<endl;
else
cout<<*it<<endl;
it=--s.lower_bound(2);
if(it==s.end())
cout<<"no find"<<endl;
else
cout<<*it<<endl;
return 0;
}
複製代碼
作者:
陳依彤
時間:
2023-10-28 20:04
#include<bits/stdc++.h>
using namespace std;
int main(){
set<int> s;
s.insert(9);
s.insert(2);
s.insert(5);
s.insert(2);
s.insert(12);
s.insert(7);
for(int i:s)
cout<<i<<endl;
cout<<"-----"<<endl;
for(auto it=s.begin();it!=s.end();it++){
cout<<*it<<endl;
}
cout<<"-----"<<endl;
auto it=s.upper_bound(8);
//cout<<it-s.begin()<<endl; 無法
cout<<*it<<endl;//7
cout<<*--it<<endl;//9
cout<<"-----"<<endl<<"it=s.upper_bound(13);"<<endl;
it=s.upper_bound(13);
if(it==s.end())cout<<"no find"<<endl;
else{
cout<<*it<<endl;
}
it=--s.lower_bound(2);
if(it==s.end())cout<<"no find"<<endl;
else{
cout<<*it<<endl;
}
return 0;
}
複製代碼
作者:
tonyh
時間:
2025-2-22 19:39
2025/2/22 複習
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2