摘要: 什么是pom? pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。 快速察看: xml 代码 <project> <mode 阅读全文
posted @ 2018-08-05 16:02 Pacify 阅读(1962) 评论(0) 推荐(0) 编辑
摘要: 解决方案(arch): 修改/etc/profile,增加以下语句: #fcitxexport XIM_PROGRAM=fcitxexport XIM=fcitxexport GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitxexport XMODIFIERS= 阅读全文
posted @ 2017-12-15 16:01 Pacify 阅读(3450) 评论(0) 推荐(1) 编辑
摘要: 在这个网址上下载linux内核https://www.kernel.org/ 下载完成后复制至/usr/src目录下,然后解压 将/boot目录下的config开头的配置文件复制至/usr/src/linux*目录下,重命名为.config 输入make menuconfig命令开始配置编译内核的选 阅读全文
posted @ 2017-10-17 11:31 Pacify 阅读(401) 评论(0) 推荐(1) 编辑
摘要: 根据正方形对角的两顶点求另外两个顶点公式: x2 = (x1+x3-y3+y1)/2; y2 = (x3-x1+y1+y3)/2; x4= (x1+x3+y3-y1)/2; y4 = (-x3+x1+y1+y3)/2; 阅读全文
posted @ 2017-09-10 20:51 Pacify 阅读(180) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; typedef long long ll; const int MAXN = 1000008; char s[MAXN]; int dx[] = {-1, -1, -1, 0, 0, 0, 1, 1, 1}; int dy[] = {-1, 0, 1, -1, 0, 1, -1, 0, 1}; ... 阅读全文
posted @ 2017-09-10 20:46 Pacify 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 套模板再算下面积即可 阅读全文
posted @ 2017-09-10 20:13 Pacify 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 题意:求多边形的核的面积 套模板即可 阅读全文
posted @ 2017-09-05 22:08 Pacify 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 水一下 阅读全文
posted @ 2017-09-04 20:09 Pacify 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 和POJ 3130,POJ 3335一样。求多边形的核 阅读全文
posted @ 2017-08-31 17:17 Pacify 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 和POJ3335一样,只不过这题是逆时针 阅读全文
posted @ 2017-08-31 17:11 Pacify 阅读(159) 评论(0) 推荐(0) 编辑