码迷,mamicode.com
首页 >  
搜索关键字:Route    ( 3964个结果
添加 vip
两台机器: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
Windows CMD下一些有用的命令
2014.06.27C:\Users\wsc>route print===========================================================================接口列表 12...08 10 76 c1 5c 56 ......Realtek...
分类:Windows程序   时间:2014-07-07 22:42:59    阅读次数:309
Problem Gas Station
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
HDU4240_Route Redundancy
题目很简单、给一个有向图,求两点间的最大流量与任意一条路中的最大流量的比值。最大流不说了,求出单条流量最大的路径可以用类似Spfa的方法来搞,保存到达当前点的最大流量,一直往下更新即可。召唤代码君:#include #include #include #include #define maxn 10...
分类:其他好文   时间:2014-07-05 19:53:06    阅读次数:184
如何去掉centos下讨厌的169.254.0.0的静态路由
每次使用route-n命令查看路由的时候,总是能看见很烦人的169.254.0.0这个静态路由的存在,看着烦啊,有什么办法不让它显示呢?方法很简单[root@naomi~]#vi/etc/sysconfig/networkNETWORKING=yes HOSTNAME=heimao NOZEROCONF=yesok,现在重启网络再看看应该不会再出现这个讨厌的..
分类:其他好文   时间:2014-07-02 06:40:38    阅读次数:289
Gas Station
题目 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如何添加路由表(转)
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
Gas Station
题目 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,转化为求最大序列的解法,和更简单简单的Jump解法。
LeetCode上 Gas Station是比较经典的一题,它的魅力在于算法足够优秀的情况下,代码可以简化到非常简洁的程度。原题如下Gas StationThere areNgas stations along a circular route, where the amount of gas at...
分类:其他好文   时间:2014-06-30 11:13:40    阅读次数:244
Choose the best route(迪杰斯特拉)
通过做这题,发现了自己的问题很大,做题不是贴代码,而是要了解思想;这题考的是有一个起点的集合,求起点集合到一个终点的最短距离,本来想用Floy的但一看map[1000][1000]超时,有向图,逆序建邻接矩阵,这样就成了一个终点到所有点的最短路了。 1 #include 2 #include ...
分类:其他好文   时间:2014-06-29 18:40:11    阅读次数:170
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!