摘要: 字符串最小表示法 其实就是用双指针进行一个自我比较。 模板: #include <iostream> #include <string> using namespace std; int main() { string s; cin >> s; int original_length = s.siz 阅读全文
posted @ 2024-12-12 11:15 安娜アンナ 阅读(43) 评论(0) 推荐(0)