摘要: // My own solutionclass Solution { public: string reverseString(string s) { return string(s.crbegin(), s.crend()); } }; // My own solutionclass Solution { public: string reverse... 阅读全文
posted @ 2016-09-26 17:31 blankquiz 阅读(108) 评论(0) 推荐(0)