#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; //判断两个单词是否为兄弟单词 bool is_brother(string word_1,string word_2){ //如果两个单词相同则不是兄弟单词 if(word_1 == word_2){ return false; } //两个单词不同,但是含有相同的字符则为兄弟单词 sort(word_1.begin(), word_1.end());...