码迷,mamicode.com
首页 >  
搜索关键字:chain    ( 1466个结果
netfilter/iptables 结构要点
四张表,每个表有若干链。 filter INPUT(路由表决策后,到本机的进程) FORWARD(路由决策后,发现不是到本地) OUTPUT(本机进程发包,路由决策后准备发到外面) iptables -t TABLE 操作 CHAIN 序号 规则 -m state --state ESTABLISHED nat PREROUTING(路由之前) POS...
分类:Web程序   时间:2015-03-16 21:22:32    阅读次数:165
CentOS7和win7双系统下修复win7启动项
把下面代码加到/boot/grub2/grub.cfg文件中,重启就可以看到win7的启动项了###BEGIN/etc/grub.d/30_os-prober###74menuentry‘Windows7(loader)(on/dev/sda1)‘--classwindows--classos$menuentry_id_option‘osprober-chain-C2AE5AA3AE5A8FB1‘{75insmodpart_msdos76insmodntfs77s..
分类:Windows程序   时间:2015-03-16 11:12:49    阅读次数:365
【HDU3487】【splay分裂合并】Play with Chain
Problem DescriptionYaoYao is fond of playing his chains. He has a chain containing n diamonds on it. Diamonds are numbered from 1 to n.At first, the d...
分类:其他好文   时间:2015-03-12 10:59:10    阅读次数:201
Coredata第一课 认识coredata
问题 在iOS/Mac中我们有许多方式去持久化存储数据:NSUserDefault、Key chain、C语言文件接口、NSFileHandle、基础框架中的write方法、归档等等。在实际应用中,我们经常需要将这些数据按一定格式转换为对象,并且进行一定的筛选等操作然后再使用,显得不是很方便。Apple给我们提供了Core Data框架,可以直接按对象的方式操作数据,让这些变得非常简单。 ...
分类:其他好文   时间:2015-03-09 17:35:28    阅读次数:189
Java垃圾回收
1.java的垃圾回收过程使用根搜索算法(GC Roots Tracing)判定对象是否存活的。这个算法的基本思路就是通过一系列的名为“GC Roots”的对象作为起始点,从这些节点开始向下搜索,搜索所走过的路径称为引用链(Reference Chain),当一个对象到GC Roots没有任何引用链...
分类:编程语言   时间:2015-03-09 00:17:25    阅读次数:309
1090. Highest Price in Supply Chain
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer. Starting from one root supplier, everyone on ...
分类:其他好文   时间:2015-03-08 17:15:36    阅读次数:130
PAT:1079. Total Sales of Supply Chain (25) AC
#include#include#includeusing namespace std;const int MAX=100010;int DEPest=0;int root=-1,N;double P,r,sum=0;vector child[MAX]; //child[父亲][孩子]...
分类:其他好文   时间:2015-03-08 15:26:07    阅读次数:138
PAT:1090. Highest Price in Supply Chain (25) AC
#include#includeusing namespace std;const int MAX=100010;int DEPest=0,times=0;vector child[MAX]; //child[父亲][孩子] 二维数组表示树形结构void DFS(int root,i...
分类:其他好文   时间:2015-03-08 14:08:55    阅读次数:178
A1079. Total Sales of Supply Chain (25)
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer...
分类:其他好文   时间:2015-03-07 21:09:10    阅读次数:150
A1090. Highest Price in Supply Chain (25)
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer...
分类:其他好文   时间:2015-03-07 21:08:45    阅读次数:128
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!