题解 | #确定两串乱序同构#
确定两串乱序同构
http://www.nowcoder.com/practice/164929d4acd04de5b0ee2d93047b3b20
先排序然后确定两排序后的字符串是否相同即可
public:
bool checkSam(string stringA, string stringB) {
// write code here
sort(stringA.begin(),stringA.end());
sort(stringB.begin(),stringB.end());
if(stringA.size()==stringB.size()){
if(stringA==stringB) return true;
else return false;
}else{
return false;
}
}
};