会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
为伊消得人憔悴。
博客园
首页
新随笔
联系
订阅
管理
2020年8月15日
分享下暑假期间 参ByteCamp笔试 成功的免面试进入夏令营 以及 深信服上岸的经历。
该文被密码保护。
阅读全文
posted @ 2020-08-15 13:12 ccsu_deer
阅读(40)
评论(0)
推荐(0)
2019年1月25日
大整数类(已完善)
摘要: #include #include #include #include #include #include using namespace std; #define MAXN 9999 #define MAXSIZE 1000 #define DLEN 4 class BigNum { private: int a[MAXSIZE]; //可以控制大数的位数 i...
阅读全文
posted @ 2019-01-25 16:14 ccsu_deer
阅读(1715)
评论(0)
推荐(1)
2018年10月22日
0-1背包模板
摘要: #include #define V 2010 using namespace std; int weight[V]; int value[V]; int f[V][V + 1]; int main() { int n, m; while(cin >>m>>n) { for (int i = 1; i > weight[i] >> value[i]; ...
阅读全文
posted @ 2018-10-22 11:07 ccsu_deer
阅读(113)
评论(0)
推荐(0)
公告