写到自闭。 class Solution { public: /** * * @param operators string字符串vector<vector<>> the ops * @return string字符串vector */ vector<string> trieU(vector<vector<string> >& operators) { if (operators.empty()) { return std::vector<std::string>(); } std::vector<std::...