/*双哈希 其实就是a对应b 同时b对应a 保证唯一 */ bool isIsomorphic(char * s, char * t){ int hash1[128]={0},hash2[128]={0},i; for (i=0; s[i] != '