摘要:
Mybatis框架 第一天: mybatis入门 概述 环境搭建 入门案例 第二天: mybatis基本使用 单标crud操作 参数和返回值 mybatis的dao编写 mybatis配置细节 第三天: mybatis的深入和多表 mybatis的连接池 mybatis的事务控制及设计的方法 myb 阅读全文
摘要:
1.DFS AcWing 842. 排列数字 https://www.acwing.com/activity/content/problem/content/905/ 点击查看代码 #include <iostream> using namespace std; const int N = 1000 阅读全文
摘要:
1.单链表 AcWing 826. 单链表 https://www.acwing.com/problem/content/description/828/ 点击查看代码 #include <iostream> using namespace std; const int N = 100010; in 阅读全文
摘要:
1.快速排序 AcWing 785. 快速排序 https://www.acwing.com/problem/content/787/ 点击查看代码 #include <iostream> using namespace std; const int N = 100010; int a[N],n; 阅读全文
摘要:
@ 主要的配置文件 /home/judge/etc/judge.conf #判题judged/judge_client /home/judge/src/web/include/db_info.inc.php #Web /etc/php5/fpm/php.ini 或 /etc/php7.0/fpm/p 阅读全文
摘要:
高精度加法 #include <iostream> #include <vector> using namespace std; const int N = 200 + 11; vector<int> add(vector<int>& v1,vector<int>& v2){ vector<int> 阅读全文