min_element 函式的 STL 範例
轉自:http://support.microsoft.com/kb/156619/zh-tw
其他相關資訊
必要的標頭
<algorithm>
原型
template<class InputIterator> inline InputIterator min_element(InputIterator first, InputIterator last)
描述
min_element 演演算法傳回的最小的專案位置中序列 [first, last)。min_element-述詞版本會使用運運算元 < 進行比較。
範例程式碼
////////////////////////////////////////////////////////////////////// // // Compile options needed: /GX // // min_element.cpp : Illustrates how to use the min_element // function. // // Functions: // // min_element - Return the minimum element within a range. // // Written by Kalindi Sanghrajka // of Microsoft Product Support Services, // Software Core Developer Support. // Copyright (c) 1996 Microsoft Corporation. All rights reserved. ////////////////////////////////////////////////////////////////////// // disable warning C4786: symbol greater than 255 character, // okay to ignore #pragma warning(disable: 4786) #include <iostream> #include <algorithm> #include <functional> #include <vector> using namespace std; void main() { const int VECTOR_SIZE = 8 ; // Define a template class vector of int typedef vector<int, allocator<int> > IntVector ; //Define an iterator for template class vector of strings typedef IntVector::iterator IntVectorIt ; IntVector Numbers(VECTOR_SIZE) ; IntVectorIt start, end, it, location ; // Initialize vector Numbers Numbers[0] = 4 ; Numbers[1] = 10 ; Numbers[2] = 10 ; Numbers[3] = 30 ; Numbers[4] = 69 ; Numbers[5] = 70 ; Numbers[6] = 96 ; Numbers[7] = 100 ; start = Numbers.begin() ; // location of first // element of Numbers end = Numbers.end() ; // one past the location // last element of Numbers // print content of Numbers cout << "Numbers { " ; for(it = start; it != end; it++) cout << *it << " " ; cout << " }\n" << endl ; // return the minimum element in the Numbers location = min_element(start, end) ; cout << "The minimum element in Numbers is: " << *location << endl ; }
數字 {4 10 10 30 69 70 96 100}
數字中最小的專案是: 4
相關文章
- 淺析stl仿函式函式
- STL容器的各個函式方法函式
- STL原始碼之rotate函式結合圖和例項分析原始碼函式
- stl中的sort函式,你真的瞭解嗎函式
- 談談函式的命名規範函式
- 全排列函式next_permutation在STL的使用函式
- stl中各種容器的自定義比較函式函式
- C++(STL原始碼):37---仿函式(函式物件)原始碼剖析C++原始碼函式物件
- C++ 11 - STL - 函式物件(Function Object) (下)C++函式物件FunctionObject
- c函式編寫規範函式
- vfork函式例項函式
- 進階篇_STL詳解(函式模板特化,類别範本特化,用模板實現自己的通用演算法)函式演算法
- js函式作為函式的引數程式碼例項JS函式
- shell裡邊子函式與主函式的例項(轉)函式
- PHP函式處理函式例項詳解PHP函式
- quit(code=None)函式和exit(code=None)函式的使用舉例UINone函式
- Excel isna函式的用法和例項Excel函式
- ASP 中 Split 函式的例項 (轉)函式
- Python正規表示式的七個使用範例Python
- 遞迴函式例項大全遞迴函式
- hasOwnProperty()函式程式碼例項函式
- pipelined函式例項函式
- 私有建構函式的物件建立例項函式物件
- 例項物件和函式物件的區別物件函式
- Linux 中的 fork() 函式例項解析Linux函式
- jquery的filter()函式用法程式碼例項jQueryFilter函式
- PHP preg match正規表示式函式的操作例項PHP函式
- c++函式模板和類别範本C++函式
- 函式可重入性及編寫規範函式
- STL區間成員函式及區間演算法總結函式演算法
- pffp(一個JavaScript公共函式介面規範)的簡介JavaScript函式
- 高階函式,單例模式,AOP函式單例模式
- $.ajax()函式用法簡單例項函式單例
- C#例項建構函式C#函式
- 【函式】oracle translate() 詳解+例項函式Oracle
- Web前端——CSS的命名規範和範例Web前端CSS
- JavaScript 立即執行函式表示式 ( IIFE ) 用例JavaScript函式
- python例項建立銷燬的函式整理Python函式