C++進階:STL演算法9--邊界
1. 簡介
邊界函式必須先排序,才能使用
函式 | 作用 | 文件 |
---|---|---|
lower_bound(beg,end,val) |
在[beg ,end )範圍內的可以插入val 而不破壞容器順序的第一個位置,返回一個ForwardIterator 。 |
lower_bound() |
lower_bound(beg,end,val,comp) |
使用函式comp 代替比較操作符執行lower_bound() 。 |
lower_bound() |
upper_bound(beg,end,val) |
在[beg ,end )範圍內插入val 而不破壞容器順序的最後一個位置,該位置標誌一個大於val 的值,返回一個ForwardIterator 。 |
upper_bound() |
upper_bound(beg,end,val,comp) |
使用函式comp 代替比較操作符執行upper_bound() 。 |
upper_bound() |
equal_range(beg,end,val) |
返回一對iterator ,第一個表示lower_bound ,第二個表示upper_bound 。 |
equal_range() |
equal_range(beg,end,val,comp) |
使用函式comp 代替比較操作符執行lower_bound() 。 |
equal_range() |
2. 示例程式碼
- lower_bound/upper_bound
// lower_bound/upper_bound example
#include <iostream> // std::cout
#include <algorithm> // std::lower_bound, std::upper_bound, std::sort
#include <vector> // std::vector
int main () {
int myints[] = {10,20,30,30,20,10,10,20};
std::vector<int> v(myints,myints+8); // 10 20 30 30 20 10 10 20
std::sort (v.begin(), v.end()); // 10 10 10 20 20 20 30 30
std::vector<int>::iterator low,up;
low=std::lower_bound (v.begin(), v.end(), 20); // ^
up= std::upper_bound (v.begin(), v.end(), 20); // ^
std::cout << "lower_bound at position " << (low- v.begin()) << '\n';
std::cout << "upper_bound at position " << (up - v.begin()) << '\n';
return 0;
}
- equal_range
// equal_range example
#include <iostream> // std::cout
#include <algorithm> // std::equal_range, std::sort
#include <vector> // std::vector
bool mygreater (int i,int j) { return (i>j); }
int main () {
int myints[] = {10,20,30,30,20,10,10,20};
std::vector<int> v(myints,myints+8); // 10 20 30 30 20 10 10 20
std::pair<std::vector<int>::iterator,std::vector<int>::iterator> bounds;
// using default comparison:
std::sort (v.begin(), v.end()); // 10 10 10 20 20 20 30 30
bounds=std::equal_range (v.begin(), v.end(), 20); // ^ ^
// using "mygreater" as comp:
std::sort (v.begin(), v.end(), mygreater); // 30 30 20 20 20 10 10 10
bounds=std::equal_range (v.begin(), v.end(), 20, mygreater); // ^ ^
std::cout << "bounds at positions " << (bounds.first - v.begin());
std::cout << " and " << (bounds.second - v.begin()) << '\n';
return 0;
}
3. 練習
相關文章
- C++ STL -- vectorC++
- C++ STL -- listC++
- C++ STL -- HashTableC++
- C++ STL stackC++
- C++ STL listC++
- 009 Rust死靈書之高階trait邊界RustAI
- C++ STL deque容器C++
- React 高階應用 -- 錯誤邊界 Error BoundariesReactError
- C++進階(雜湊)C++
- 《超越邊界》
- C++ stl容器詳解C++
- C++ STL之迭代器C++
- C++ STL stack容器——棧C++
- C++ STL迭代器(iterator)C++
- 二分查詢左邊界,右邊界,>=,>,<=,<
- 秒懂邊緣雲 | 邊緣雲技術進階
- C++進階(智慧指標)C++指標
- C++ STL list連結串列C++
- 【AutoCAD .NET】如何在無邊界Hatch上選擇邊界點?
- C++提高程式設計-STLC++程式設計
- 演算法進階(8): EM演算法演算法
- 談談 C++ STL 中的迭代器C++
- 穿越邊界的姿勢
- 【二分】【邊界判定】
- AUTOCAD——快速提取邊界線
- React 錯誤邊界元件React元件
- 絕對值邊界法
- Python進階-演算法-遞迴Python演算法遞迴
- Python進階-演算法-快速排序Python演算法排序
- C++ 學習筆記之——STL 庫 queueC++筆記
- C++ STL 優先佇列 (priority_queue)C++佇列
- Swift 進階 | 看得見的演算法Swift演算法
- Python進階-演算法-插入排序Python演算法排序
- 邊界佈局管理器
- c++效能測試工具:google benchmark進階(一)C++Go
- C++區域性變數的記憶體訪問:小心技巧與安全邊界C++變數記憶體
- C++學習筆記 — STL標準模板庫C++筆記
- C++圖書館管理系統 [STL實現]C++