摘要: 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 void strswap(char *&p,char *&q){ 5 char *temp; 6 temp=p; 7 p=q; 8 q=temp; 9 } 10 i 阅读全文
posted @ 2021-01-14 13:23 gentlebreeze_ws 阅读(281) 评论(1) 推荐(1) 编辑