POJ-1318(list.sort()输出不为字典序,map才是按字典序排列)

Posted jhcelue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ-1318(list.sort()输出不为字典序,map才是按字典序排列)相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<string>
#include<list>
#include<map>
#include<utility>
#include<algorithm>
using namespace std;

map<string,int> outputMap;

void ergodic(string prefix, string str){
	if(str==""){
		outputMap.insert(pair<string,int>(prefix,0));
	}else{
		for(int i=0;i<str.length();i++){
			ergodic(prefix+str[i],str.substr(0,i)+str.substr(i+1,str.length()));
		}
	}
}

int main(int argc, char *argv[]){
	string str;
	list<string> inputList;
	while(cin>>str,str!="XXXXXX"){
		inputList.push_back(str);
	}

	while(cin>>str,str!="XXXXXX"){
		bool isUnscramble=false;
		outputMap.clear();
		ergodic("",str);
		for(map<string,int>::iterator iter=outputMap.begin();
				iter!=outputMap.end();
				++iter){
			if(find(inputList.begin(),inputList.end(),iter->first)!=inputList.end()){
				cout<<iter->first<<endl;
				isUnscramble=true;
			}
		}

		if(!isUnscramble){
			cout<<"NOT A VALID WORD"<<endl;
		}
		cout<<"******"<<endl;
	}

	return 0;
}

以上是关于POJ-1318(list.sort()输出不为字典序,map才是按字典序排列)的主要内容,如果未能解决你的问题,请参考以下文章

poj1318 Word Amalgamation

poj 1318 Word Amalgamation

python中sort()与sorted()的区别

python sort与sorted使用笔记

#题目:输入三个整数 x, y, z,请把这三个数由小到大输出。

`sorted(list)` 与 `list.sort()` 有啥区别?