码迷,mamicode.com
首页 > 其他好文
【网络流】【最小点权覆盖】【NEERC 2003】【POJ2125】【cogs 1575】有向图破坏
1575. [NEERC 2003][POJ2125]有向图破坏★★★ 输入文件:destroyingthegraph.in 输出文件:destroyingthegraph.out 简单对比 时间限制:1 s 内存限制:256 MB 【题目描述】Alice和Bob正在玩如下的游戏。首先Alice画一个有N个顶点,M条边的有向图。然后Bob试着摧毁它。在一次操作中他可以找到图中的一个点...
分类:其他好文   时间:2015-06-18 09:51:29    阅读次数:121
域名是什么?
志强博客是志强为大家搭建的SEO博客,分享SEO技术及SEO经验。大家做站的时候不知道是否注意到了域名,域名好坏决定网站的影响及运营,同时也决定SEO。今天志强博客带大家认识什么是域名?域名对网站有什么影响?...
分类:其他好文   时间:2015-06-18 09:49:28    阅读次数:169
STL源码剖析(1):空间配置器
STL所有的操作对象(所有的数值)都存放在容器之内,容器需要分配空间以存放数据。为什么不说allocator是内存配置器而是空间配置器,因为空间不仅是内存,空间也可以是磁盘或其它辅助储存媒体。这里我们主要讨论内存配置。    SGI STL每个容器缺省的空间配置器为alloc,如vector: template clas...
分类:其他好文   时间:2015-06-18 09:47:39    阅读次数:124
课程设计小知识
DAODAO是Data Access Object三个首字母的组合,是和数据库打交道的,夹在业务逻辑与数据资源中间。一个标准的DAO模式包含: (1)VO:数据传输对象,一般和数据库中的一张数据表对应(一个实例相当于数据表中的一条记录,具体看例子比较好理解) (2)DAO接口:一个接口,声明包含的需要的操作 (3)DAOImpl:DAO接口的具体实现类,只负责实现DAO接口声明的功能,不包括数...
分类:其他好文   时间:2015-06-18 09:46:38    阅读次数:173
13 Roman to Integer
13 Roman to Integer链接:https://leetcode.com/problems/roman-to-integer/ 问题描述: Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.Hide Tags Math St...
分类:其他好文   时间:2015-06-18 09:47:10    阅读次数:167
map集合框架
先简单介绍HashMap这个类import java.util.HashMap ; import java.util.Map ; public class HashMapDemo01{ public static void main(String args[]){ Map map = null; // 声明Map对象,其中key和value的类型为String map...
分类:其他好文   时间:2015-06-18 09:47:34    阅读次数:123
ApartmentState
ApartmentState用来指定 System.Threading.Thread 的单元状态。是一个枚举类型变量。有三个枚举成员。 分别是STA、MTA、Unknown。 STA:    System.Threading.Thread 将创建并进入一个单线程单元 MTA:   System.Threading.Thread 将创建并进入一个多线程单元 Unknown: 尚未设置 S...
分类:其他好文   时间:2015-06-18 09:46:37    阅读次数:114
Strust2遍历实体
【摘要】本文主要介绍及演示了Struts迭代器(iterator)遍历实体常用的例子,基于MyEclipse开发环境,重点关注前后端代码的实现,给出后端java代码、前段struts标签代码,主要有如下例子: List则简单多,借用迭代器iterator的id、value属性,再用获取   如: s:iterator id="u" value="users"> tr> ...
分类:其他好文   时间:2015-06-18 09:47:25    阅读次数:193
浅谈facebook威胁分析框架
facebook在去年的时候曾向外公开自家的威胁情报分析框架ThreatData(Understanding Online Threats with ThreatData) ,消息发出后更多的人关心的是是否开源,反正我是没有找到这个开源框架。 For us to do our part effectively, we must continually search for new types o...
分类:其他好文   时间:2015-06-18 09:48:25    阅读次数:143
openstack安装经验总结
想搭一个floodlight+openstack的环境,floodlight容易可是openstack就花了十多天 都说openstack配置难,那就来讲一下我对openstack的历程,大家也少走点弯路 1.之前用fuel工具安装。在我笔记本的里开一个个虚拟机作为节点,再进行节点的通信,无奈电脑6g内存只能撑到3个节点,就没有继续了。 2.下载了centos-everything安...
分类:其他好文   时间:2015-06-18 09:46:32    阅读次数:159
12 Integer to Roman
12 Integer to Roman链接:https://leetcode.com/problems/integer-to-roman/ 问题描述: Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.Hide Tags Math St...
分类:其他好文   时间:2015-06-18 09:45:27    阅读次数:170
黑马day04 画一个汉字的随机验证码的图片
下面的程序详细介绍了如何画一个随机验证码发送到客户端即浏览器进行显示: 1.画随机验证码的代码: package cn.itheima.response; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.imag...
分类:其他好文   时间:2015-06-18 09:45:38    阅读次数:120
Invert Binary Tree
Invert a binary tree. 4 / 2 7 / \ / 1 3 6 9 to 4 / 7 2 / \ / 9 6 3 1 Trivia: This problem was inspired by this original tweet by Max Howe...
分类:其他好文   时间:2015-06-18 09:47:06    阅读次数:180
leetcode——190 Reverse Bits(32位无符号二进制数的翻转)
解题思路: (1)将需要翻转的数n跟1进行“&”运算,取得最低位上的数, (2)左移到对应位置上,实现翻转。 (3)将翻转的结果加入到result中 (4)将n>>1右移一位,继续遍历...
分类:其他好文   时间:2015-06-18 09:43:49    阅读次数:72
黑马day04 定时刷新&是否缓冲
定时刷新: //每隔一秒刷新 response.setIntHeader("Refresh", 1); response.setContentType("text/html;charset=utf-8"); response.getWriter().write("当前的时间"+new Date()); 告知浏览器不缓存数据。当使用验证码的时候就不缓存数据,为的是防止有的浏览...
分类:其他好文   时间:2015-06-18 09:45:33    阅读次数:117
LightOJ 1214(大数相除)
Large Division Description Given two integers, a and b, you should check whether a is divisible by b or not. We know that an integer a is divisible by an integer b if and only if there exi...
分类:其他好文   时间:2015-06-18 09:44:38    阅读次数:127
UVA 11827 Maximum GCD
求任意两个数的gcd最大值。 #include #include #include #include #include #include #include #define N 110 using namespace std; int n; int s[N]; int gcd(int b,int a) { return b==0?a:gcd(a%b,b); } int main() ...
分类:其他好文   时间:2015-06-18 09:42:27    阅读次数:100
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!