var longComSubstr = function (){ // 短字符串 this.smallStr=''; // 长字符串 this.largeStr=''; // 短字符串长度 this.smallLen=0; // // 排列标识 // this.combinationIndex=0; // 最大子串数组 this.longComSubstrArr=[]; // // 中间处理用数组 // this.midDealArr=[]; // 去重的最大子串数组 this.longComSubstrArrNew=[]; } // 设置长字符串 短字符串 lo...