双指针,贪心+回溯。时间复杂度O(nm),空间复杂度O(1) #include <bits/stdc++.h> using namespace std; bool isnum(char s) { if( s>= '0' && s<='9') { return true; } return false; } bool isword(char s) { if( s>= 'a' && s<= 'z') { return true; } if( s...