问题描述
A A 2 2 3 3 4 4, 一共4对扑克牌。请你把它们排成一行。
要求:两个A中间有1张牌,两个2之间有2张牌,两个3之间有3张牌,两个4之间有4张牌。
请填写出所有符合要求的排列中,字典序最小的那个。
例如:22AA3344 比 A2A23344 字典序小。当然,它们都不是满足要求的答案。
请通过浏览器提交答案。“A”一定不要用小写字母a,也不要用“1”代替。字符间一定不要留空格。
参考答案:2342A3A4
参考代码
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
bool check(const string &s){
if(s.rfind('A')-s.find('A')==2&&
s.rfind('2')-s.find('2')==3&&
s.rfind('3')-s.find('3')==4&&
s.rfind('4')-s.find('4')==5)
return true;
return false;
}
using namespace std;
int main(){
string s="223344AA";
do{
if(check(s))
cout<<s<<endl;
}while(next_permutation(s.begin(),s.end()));
return 0;
}
用全排列就可以做。对string里的数据进行全排列是需要注意
- next_permutation(s.begin(),s.end())来表示全排列的开始和结束位置
- string s=“223344AA”;需要这样子按序拍才能被全排列(还没有去搞懂为什么。。。。)3322不能全排列,3214中 用next_permutation()进行排列1,2都没有出现过在前面
string 字符串的rfind()函数和find()函数,一个是从后面往前找,一个是前面往后找。下标相减,应该是后面的下标减去前面的下标,即 s.rfind(‘A’)-s.find(‘A’) 而不是s.find(‘A’)-s.rfind(‘A’)
两个A中间有1张牌,两个2之间有2张牌,两个3之间有3张牌,两个4之间有4张牌。中间有1张牌,下标相减应该差2!!
//if(s.rfind('A')-s.find('A')==1&&s.rfind('2')-s.find('2')==2&&
//s.rfind('3')-s.find('3')==3&&s.rfind('4')-s.find('4')==4)
//中间有1张牌,下标相减应该差2!!
if(s.rfind('A')-s.find('A')==2&&
s.rfind('2')-s.find('2')==3&&
s.rfind('3')-s.find('3')==4&&
s.rfind('4')-s.find('4')==5)
加不加const这题结果都一样
check(const string &s)//参数不能在函数中被修改
check(string s)