std:next_permutation
実装方法に興味があったので、gnu libstdc++ 4.7
バージョンを抽出し、識別子とフォーマットをサニタイズして、次のデモを作成しました...
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
template<typename It>
bool next_permutation(It begin, It end)
{
if (begin == end)
return false;
It i = begin;
++i;
if (i == end)
return false;
i = end;
--i;
while (true)
{
It j = i;
--i;
if (*i < *j)
{
It k = end;
while (!(*i < *--k))
/* pass */;
iter_swap(i, k);
reverse(j, end);
return true;
}
if (i == begin)
{
reverse(begin, end);
return false;
}
}
}
int main()
{
vector<int> v = { 1, 2, 3, 4 };
do
{
for (int i = 0; i < 4; i++)
{
cout << v[i] << " ";
}
cout << endl;
}
while (::next_permutation(v.begin(), v.end()));
}
出力は期待どおりです:http : //ideone.com/4nZdx
私の質問は:それはどのように機能しますか?何の意味があるi
、j
とk
?彼らは実行のさまざまな部分でどのような価値を持っていますか?その正しさの証明のスケッチとは何ですか?
明らかに、メインループに入る前に、それは単純な0または1要素リストのケースをチェックするだけです。メインループの入り口で、iは最後の要素(1つの過去の端ではない)を指し、リストは少なくとも2要素の長さです。
メインループの本体で何が起こっているのですか?