两台机器:172.16.91.101 172.16.91.107在91.101上增加虚拟ip,92网段的ifconfig eth0:1 172.16.92.2 netmask 255.255.255.0 up由于不再同一个网段需要添加路由(与vip交互的机器上):增加路由:route add -ne...
分类:
其他好文 时间:
2014-07-16 23:21:32
阅读次数:
284
2014.06.27C:\Users\wsc>route print===========================================================================接口列表 12...08 10 76 c1 5c 56 ......Realtek...
Problem Description:There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas ta...
分类:
其他好文 时间:
2014-07-07 15:52:25
阅读次数:
231
题目很简单、给一个有向图,求两点间的最大流量与任意一条路中的最大流量的比值。最大流不说了,求出单条流量最大的路径可以用类似Spfa的方法来搞,保存到达当前点的最大流量,一直往下更新即可。召唤代码君:#include #include #include #include #define maxn 10...
分类:
其他好文 时间:
2014-07-05 19:53:06
阅读次数:
184
每次使用route-n命令查看路由的时候,总是能看见很烦人的169.254.0.0这个静态路由的存在,看着烦啊,有什么办法不让它显示呢?方法很简单[root@naomi~]#vi/etc/sysconfig/networkNETWORKING=yes
HOSTNAME=heimao
NOZEROCONF=yesok,现在重启网络再看看应该不会再出现这个讨厌的..
分类:
其他好文 时间:
2014-07-02 06:40:38
阅读次数:
289
题目
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of gas
to travel from s...
分类:
其他好文 时间:
2014-07-01 11:02:24
阅读次数:
158
linux下静态路由修改命令方法一:添加路由route add -net 192.168.0.0/24 gw 192.168.0.1route add -host 192.168.1.1 dev 192.168.0.1删除路由route del -net 192.168.0.0/24 gw 192....
分类:
系统相关 时间:
2014-07-01 10:23:01
阅读次数:
278
题目
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of gas
to travel from s...
分类:
其他好文 时间:
2014-06-30 16:57:25
阅读次数:
231
LeetCode上 Gas Station是比较经典的一题,它的魅力在于算法足够优秀的情况下,代码可以简化到非常简洁的程度。原题如下Gas StationThere areNgas stations along a circular route, where the amount of gas at...
分类:
其他好文 时间:
2014-06-30 11:13:40
阅读次数:
244
通过做这题,发现了自己的问题很大,做题不是贴代码,而是要了解思想;这题考的是有一个起点的集合,求起点集合到一个终点的最短距离,本来想用Floy的但一看map[1000][1000]超时,有向图,逆序建邻接矩阵,这样就成了一个终点到所有点的最短路了。 1 #include 2 #include ...
分类:
其他好文 时间:
2014-06-29 18:40:11
阅读次数:
170