◐ Shell
clean mode source ↗

std::prev_permutation - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<algorithm>

template< class BidirIt > bool prev_permutation( BidirIt first, BidirIt last);

(1)

template< class BidirIt, class Compare > bool prev_permutation( BidirIt first, BidirIt last, Compare comp);

(2)

Trasforma il [first, last) gamma nella permutazione precedente da l'insieme di tutte le permutazioni che sono classificati in ordine lessicografico rispetto al operator< o comp. true Restituisce se esiste permutazione, trasforma altrimenti il ​​campo nella permutazione ultimo (come per std::sort(first, last); std::reverse(first, last);) e ritorna false.

Original:

Transforms the range [first, last) into the previous permutation from the set of all permutations that are lexicographically ordered with respect to operator< or comp. Returns true if such permutation exists, otherwise transforms the range into the last permutation (as if by std::sort(first, last); std::reverse(first, last);) and returns false.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parametri

first, last -

la gamma di elementi per permutare

Original:

the range of elements to permute

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

comp - comparison function which returns ​true if the first argument is less than the second.

The signature of the comparison function should be equivalent to the following:

bool cmp(const Type1 &a, const Type2 &b);

The signature does not need to have const &, but the function must not modify the objects passed to it.
The types Type1 and Type2 must be such that an object of type BidirIt can be dereferenced and then implicitly converted to both of them. ​

Type requirements
-BidirIt must meet the requirements of ValueSwappable and BidirectionalIterator.

Valore di ritorno

true se la permutazione nuovo precede il vecchio in ordine lessicografico. false se la permutazione primo è stato raggiunto e la gamma è stato reimpostato per la permutazione all'ultimo.

Original:

true if the new permutation precedes the old in lexicographical order. false if the first permutation was reached and the range was reset to the last permutation.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Complessità

Alla maggior parte delle operazioni di swap (last-first)/2.

Original:

At most (last-first)/2 swaps.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Possibile implementazione

template<class BidirIt>
bool prev_permutation(BidirIt first, BidirIt last)
{
    if (first == last) return false;
    BidirIt i = last;
    if (first == --i) return false;

    while (1) {
        BidirIt i1, i2;

        i1 = i;
        if (*i1 < *--i) {
            i2 = last;
            while (!(*--i2 < *i))
                ;
            std::iter_swap(i, i2);
            std::reverse(i1, last);
            return true;
        }
        if (i == first) {
            std::reverse(first, last);
            return false;
        }
    }
}

Esempio

Il codice seguente consente di stampare tutte le sei permutazioni della stringa "abc" in ordine inverso

Original:

The following code prints all six permutations of the string "abc" in reverse order

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

#include <algorithm>
#include <string>
#include <iostream>
#include <functional>
int main()
{
    std::string s="abc";
    std::sort(s.begin(), s.end(), std::greater<char>());
    do {
        std::cout << s << ' ';
    } while(std::prev_permutation(s.begin(), s.end()));
    std::cout << '\n';
}

Output:

Vedi anche