上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 166 下一页
摘要: 题目地址:POJ 1201 题意:构造一个集合,这个集合内的数字满足所给的n个条件。每一个条件都是指在[a,b]内至少有c个数在集合内。问集合最少包括多少个点。即求至少有多少个元素在区间[a,b]内。 思路: 对于题目中所说的每一个条件[a,b]内至少有c个数在集合能够表示为dis(b+1)-dis 阅读全文
posted @ 2017-06-19 10:06 yutingliuyl 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 存储过程能够用来提高数据库的查询效率。由于它事先被编译过。被储存于内存中,每次执行前。不必被从新编译,所以效率非常高。存储过程是一组sql增删改查的集合,假设程序中的一个功能涉及到对数据库的多次操作。那么就能够事先编译好存储过程。以提高程序执行效率! 简单查询: CREATE PROCEDURE s 阅读全文
posted @ 2017-06-19 08:34 yutingliuyl 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 今天開始做到最基本的功能发送和接收消息、获取本地历史数据。 先上到眼下为止的效果图: 首先是要在XMPPFramework.h中引入数据存储模块: //聊天记录模块的导入 #import "XMPPMessageArchiving.h" #import "XMPPMessageArchivingCo 阅读全文
posted @ 2017-06-18 20:45 yutingliuyl 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 【POJ 2482】 Stars in Your Window(线段树+离散化+扫描线) Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11294 Accepted: 3091 Description Fleeting time 阅读全文
posted @ 2017-06-18 20:13 yutingliuyl 阅读(176) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include <boost/noncopyable.hpp> #include <boost/scoped_ptr.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/thread.hpp 阅读全文
posted @ 2017-06-18 18:59 yutingliuyl 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1.描写叙述 “我”在 2004 年的时候带了一个项目,做一个人力资源管理,该项目是我们总公司发起的项目,公司一共同拥有 700 多号人,包含子公司,这个项目还是比較简单的,分为三大模块:人员信息管理,薪酬管理,职位管理,当中人员管理这块就用到了适配器模式,是怎么回事呢?当时开发时明白的指明:人员信 阅读全文
posted @ 2017-06-18 18:22 yutingliuyl 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 在Resin配置參数实现JConsole远程监控JVM 在Resin中配置中配置下列參数,就能够是实现了! <jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg> <jvm-arg>-Dcom.sun.management.jmxremote.port=9 阅读全文
posted @ 2017-06-18 17:29 yutingliuyl 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Intellj IDEA 安装配置 使用IntelliJ IDEA 13搭建Android集成开发环境(图文教程) Android设计指南站点 图标 App Icon Template免费的PhotoShop模板,方便预览图标效果 http://appicontemplate.com/ Gemico 阅读全文
posted @ 2017-06-18 17:16 yutingliuyl 阅读(148) 评论(0) 推荐(0) 编辑
摘要:  Reuse Is About People and Education, Not Just Architecture Jeremy Meyer you MigHT AdopT THE AppRoACH that a framework that is well designed, or an a 阅读全文
posted @ 2017-06-18 16:23 yutingliuyl 阅读(166) 评论(0) 推荐(0) 编辑
摘要: /** * @author default7<default7@zbphp.com> * @description 演示PHP弹出下载的原理 * * @param $file_name */ function downFile($file_name) { $file_path = "/tmp/" . 阅读全文
posted @ 2017-06-18 15:28 yutingliuyl 阅读(324) 评论(0) 推荐(0) 编辑
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 166 下一页