题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5293 题意: 给你一些链,每条链都有自己的价值,求不相交不重合的链能够组成的最大价值。 题解: 树形dp, 对于每条链u,v,w,我们只在lca(u,v)的顶点上处理它 让dp[i]表示以i为根的指数 ...
分类:
编程语言 时间:
2016-05-29 16:23:47
阅读次数:
198
* Struts从2.1.8升级到2.3.24.3,xwork是从2.1.6到2.3.24.3 以前ActionError是可以在多个action之间通过chain传递的, 例如 Action a chain 》action b,然后b又重新chain回到a b中添加的actionerror在a可以 ...
分类:
其他好文 时间:
2016-05-28 12:44:26
阅读次数:
151
最近由于项目需要,需要打开防火墙功能. 公司有 arm linux 3.0x86 linux 3.2x86 linux 2.4 的三个嵌入式.都需要打开防火墙功能. 执行“whereis iptables”命令,如果结果不为空,则说明防火墙软件已安装 输入iptables -L 命令查看配置 此处为 ...
分类:
其他好文 时间:
2016-05-25 10:50:18
阅读次数:
208
最近看到有个装饰器的例子,没看懂, 从stackoverflow看到了浏览最多的关于python装饰器的文章,下面是这个文章的网址 http://stackoverflow.com/questions/739654/how-can-i-make-a-chain-of-function-decorat ...
分类:
编程语言 时间:
2016-05-21 01:25:59
阅读次数:
287
题目信息1090. Highest Price in Supply Chain (25)时间限制200 ms
内存限制65536 kB
代码长度限制16000 B
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)– everyone involved in moving a...
分类:
其他好文 时间:
2016-05-18 19:33:23
阅读次数:
144
题目信息1106. Lowest Price in Supply Chain (25)时间限制200 ms
内存限制65536 kB
代码长度限制16000 B
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)– everyone involved in moving a p...
分类:
其他好文 时间:
2016-05-18 19:27:09
阅读次数:
188
参考资料:http://www.cnblogs.com/suizhouqiwei/archive/2012/11/29/2773310.html 职责链模式(Chain of Responsibility Pattern):避免请求发送者与接收者耦合在一起,让多个对象都有可能接收请求,将这些对象连接 ...
分类:
其他好文 时间:
2016-05-15 12:34:05
阅读次数:
115
我在之前一篇博客《iOS响应者链Responder Chain浅析》中对iOS开发中遇到的响应者链概念有了基本的了解。但是仅仅停留在理解概念的基础上还是远远不够的。该博客我们会通过代码案例来深入理解响应链。该博客的示例上传至 https://github.com/chenyufeng1991/ResponderChain 。(1)首先来说说第一响应者(First Responder)。响应事件的...
分类:
移动开发 时间:
2016-05-15 02:36:07
阅读次数:
375
责任链模式的定义: Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request.Chain the receiving obj ...
分类:
其他好文 时间:
2016-05-13 09:50:20
阅读次数:
134
过滤器概念
过滤器,在执行request前或者response后进行过滤处理。
request前过滤举例:在要求登录的网站,在未登录的状态下,除了登录界面,访问其他然都会自动转到登录界面。
执行顺序
假设有2个Filter,那么在显示网页和过滤器的执行顺序如下:
doFilter1{
System.out.println("1:Filter1");
chain.doFilter(re...
分类:
其他好文 时间:
2016-05-13 02:07:52
阅读次数:
141