摘要: 基本没怎么调就AC了,舒服 阅读全文
posted @ 2022-10-25 11:30 520Enterprise 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 002:难一点的swap 这个题有点意思,注意理解指针的含义. 002.cpp #include <iostream> using namespace std; void swap( // 在此处补充你的代码 int *&a, int *&b ) { int * tmp = a; a = b; b 阅读全文
posted @ 2022-10-15 23:42 520Enterprise 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 注意new的使用 lab6_2.cpp #include <iostream> using namespace std; void swap(int &a, int &b) { /********** Begin **********/ int tmp = a; a = b; b = tmp; /* 阅读全文
posted @ 2022-10-15 02:30 520Enterprise 阅读(32) 评论(0) 推荐(0) 编辑
摘要: client.cpp #include "client.h" void Client::ChangeServerName(char name) { /********** Begin **********/ Client::ServerName = name; Client::ClientNum + 阅读全文
posted @ 2022-10-15 02:10 520Enterprise 阅读(21) 评论(0) 推荐(0) 编辑
摘要: ICS的PA0 阅读全文
posted @ 2022-10-12 23:50 520Enterprise 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 知识点 阅读全文
posted @ 2020-04-25 22:14 520Enterprise 阅读(199) 评论(2) 推荐(0) 编辑
摘要: 先咕一会 阅读全文
posted @ 2020-01-15 22:23 520Enterprise 阅读(278) 评论(11) 推荐(0) 编辑
摘要: DP 阅读全文
posted @ 2019-12-16 17:22 520Enterprise 阅读(178) 评论(1) 推荐(0) 编辑
摘要: 十二月总结2 阅读全文
posted @ 2019-12-14 17:02 520Enterprise 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 差分约束 阅读全文
posted @ 2019-12-11 21:53 520Enterprise 阅读(154) 评论(0) 推荐(0) 编辑