排序可能會用到的一個函數,來自C++STC,直接調用能夠說很方便的解決了一些排序問題ios
這是一個求一個排序的下一個排列的函數,能夠遍歷全排列,要包含頭文件<algorithm>
下面是之前的筆記
(1) int 類型的next_permutation
int main()
{
a[0]=1;a[1]=2;a[2]=3;
{
cout<<a[0]<<""<<a[1]<<""<<a[2]<<endl;
} while (next_permutation(a,a+3)); //參數3指的是要進行排列的長度
//若是存在a以後的排列,就返回true。若是a是最後一個排列沒有後繼,返回false,每執行一次,a就變成它的後繼
}
輸出:
若是改爲 while(next_permutation(a,a+2));
則輸出:
只對前兩個元素進行字典排序
顯然,若是改爲 while(next_permutation(a,a+1)); 則只輸出:1 2 3
若排列原本就是最大的了沒有後繼,則next_permutation執行後,會對排列進行字典升序排序,至關於循環
next_permutation(list,list+3);
cout<<list[0]<<""<<list[1]<<""<<list[2]<<endl;
//輸出: 1 2 3
(2) char 類型的next_permutation
int main()
{
cin >> ch;
sort(ch, ch + strlen(ch) );
//該語句對輸入的數組進行字典升序排序。如輸入9874563102cout<<ch;將輸出0123456789,這樣就能輸出全排列了
cout<< ch<< endl;
}while(next_permutation(first, last));
}
//這樣就沒必要事先知道ch的大小了,是把整個ch字符串全都進行排序
//若採用 while(next_permutation(ch,ch+5));若是隻輸入1562,就會產生錯誤,由於ch中第五個元素指向未知
//若要整個字符串進行排序,參數5指的是數組的長度,不含結束符
(3) string 類型的next_permutation
int main()
{
{
cout<<line<<endl;
}
}
int main()
{
{
sort(line.begin(),line.end());//全排列
cout<<line<<endl;
cout<<line<<endl;
}
}
#include<iostream> //poj 1256Anagram
#include<string>
#include<algorithm>
using namespace std;
int cmp(char a,char b)//'A'<'a'<'B'<'b'<...<'Z'<'z'.
{
}
int main()
{
cin>>n;
{
scanf("%s",ch);
sort(ch,ch+strlen(ch),cmp);
{
printf("%s\n",ch);
}while(next_permutation(ch,ch+strlen(ch),cmp));
}
}
來自新浪博客函數
的概括
spa