uacs2024

导航

2024年3月11日 #

郑莉cpp习题6-24 设计字符串类 未做

摘要: 设计字符串类 阅读全文

posted @ 2024-03-11 15:05 ᶜʸᵃⁿ 阅读(3) 评论(0) 推荐(0) 编辑

郑莉cpp习题6-22 用递归算法翻转字符串s

摘要: 郑莉cpp习题6-22 用递归算法翻转字符串s #include <iostream> using namespace std; #include <string> void reverse(string &s,int left,int right){ char t; if(left < right 阅读全文

posted @ 2024-03-11 14:44 ᶜʸᵃⁿ 阅读(1) 评论(0) 推荐(0) 编辑