摘要: 题目 自己写的: #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { int n; string s; cin >> n >> s; reverse(s.begin( 阅读全文
posted @ 2025-01-15 23:12 hisun9 阅读(10) 评论(0) 推荐(0)
摘要: 题目 不会做,老老实实看卡哥思路,这里面讲的很详细,有很多值得学习揣摩的东西。 在把空格处理好后,先反转整体,再反转其中的单词的方法,很值得学习。即使用整体反转+局部反转就可以实现反转单词顺序的目的 跟着卡哥代码敲了一遍: class Solution { public: void reverse( 阅读全文
posted @ 2025-01-15 23:12 hisun9 阅读(13) 评论(0) 推荐(0)
摘要: 题目 自己写的: #include <iostream> #include <string> using namespace std; int main() { string s; string t; cin >> s; for (auto c : s) { if (c >= '1' && c <= 阅读全文
posted @ 2025-01-15 15:15 hisun9 阅读(96) 评论(0) 推荐(0)