C++ Codes
Algorithms
Algorithm Analysis in C++
Beginners
Code Snippets
Graphics
Data Structures
File Manipulation
Games
Mathematics
Miscellaneous
Visual C++ Library
C++ > Visual C++ 5.0 Standard C++ Library sample source codes
The prev permutation algorithm changes the order of the elements the range
The prev permutation algorithm changes the order of the elements the range prev_permutation Header <algorithm> template<class BidirectionalIterator> inline bool prev_permutation(BidirectionalIterator first, BidirectionalIterator last) The prev_permutation algorithm changes the order of the elements the range [first, last), to the previous lexicographic permutation and returns true. If there is no prev_permutation, it arranges the sequence to be the first permutation and returns false. IMPORTANT: The prev_permutation algorithm assumes the sequence is sorted in descending order using operator<. The non-predicate version uses the operator< to order the permutations. version 2 prototype description here Samples Sample for Non-Predicate Version // disable warning C4786: symbol greater than 255 character, // okay to ignore #pragma warning(disable: 4786) #include <iostream> #include <vector> #include <string> #include <algorithm> #include <functional> using namespace std ; void main() { const int VECTOR_SIZE = 3 ; // Define a template class vector of strings typedef vector<string> StrVector ; //Define an iterator for template class vector of strings typedef StrVector::iterator StrVectorIt ; //Define an ostream iterator for strings typedef ostream_iterator<string> StrOstreamIt; StrVector Pattern(VECTOR_SIZE) ; StrVectorIt start, end, it ; StrOstreamIt outIt(cout, " ") ; start = Pattern.begin() ; // location of first // element of Pattern end = Pattern.end() ; // one past the location last // element of Pattern //Initialize vector Pattern Pattern[0] = "C" ; Pattern[1] = "B" ; Pattern[2] = "A" ; // print content of Pattern cout << "Before calling prev_permutation...\n" << "Pattern: " ; for(it = start; it != end; it++) cout << *it << " " ; cout << "\n\n" ; // Generate all possible permutations cout << "After calling prev_permutation...." << endl ; while ( prev_permutation(start, end) ) { copy(start, end, outIt) ; cout << endl ; } } Program Output Before calling prev_permutation... Pattern: C B A After calling prev_permutation.... C A B B C A B A C A C B A B C
Privacy Policy
|
Link to Us
|
Links