码迷,mamicode.com
首页 >  
搜索关键字:LINK    ( 14136个结果
网站开发_从基础做起2
一超链接的四种样式a:link {color: #FF0000} /* 未访问的链接 */a:visited {color: #00FF00} /* 已访问的链接 */a:hover {color: #FF00FF} /* 鼠标移动到链接上 */a:active {color: #0000FF} /...
分类:Web程序   时间:2014-07-18 23:27:51    阅读次数:435
poj 3020 Antenna Placement
二分匹配基础,只要将a,b找出来就好 对于每个“ *”的4个方向进行查找并且记录他们间的关系; 因为我们对a->b和b->a都进行了读取,所以要除2; #include #include char str[41][11]; bool mat[400][400],usedif[400]; int h,w,link[400],num; int dx[4]={0,0,-1,1}; int dy[4...
分类:其他好文   时间:2014-07-16 10:17:10    阅读次数:229
TP-Link 无线路由器设置图文教程----怎么设置TP-Link无线路由器图解
转自:http://www.jb51.net/softjc/39399.html无线路由器的基础配置在我们第一次配置无线宽带路由器时,参照说明书找到无线宽带路由器默认的IP地址是192.168.1.1,默认子网掩码是255.255.255.0由于TP-LINK TL-WR541G的配置界面是基于浏览...
分类:其他好文   时间:2014-07-14 18:57:23    阅读次数:274
[zz]Understanding Python's "with" statement
refer to:http://effbot.org/zone/python-with-statement.htmJudging from comp.lang.python and other forums, Python 2.5’s newwithstatement(dead link) seem...
分类:编程语言   时间:2014-07-14 15:45:21    阅读次数:263
Max-Min Fairness带宽分配算法
最近再写一个网络仿真器,里面参考了Max-MinFairness算法,这是一种比较理想、公平的带宽分配算法。其思路主要如下:首先是算法的准备,考察某一时刻的网络中所有的flow,由于每条flow都有其各个link,因此可以得到各个link上所有流经的flow,然后开始迭代,各个link都把capacity平均分给所有流经的flow,接着每条flow的速度就等于其最小link分配的带宽,然后每条li...
分类:其他好文   时间:2014-07-14 13:14:33    阅读次数:160
Native libraries .so.XY failing to link at runtime
What you need to do is edit the configure file. And find out this:SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBV...
分类:其他好文   时间:2014-07-14 00:00:03    阅读次数:278
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-07-13 18:20:52    阅读次数:202
链表操作时巧用指针的指针
比如在插入有序链表的过程中,一般情况下要使用俩指针来遍历,而后还要判断是否在第一个位置插入;利用指针的指针后不需要另外考虑这种特殊情况。 代码: #include #include struct node{ int data; struct node *next; } *head; //sorted link-list void insert(struct no...
分类:其他好文   时间:2014-07-13 15:38:13    阅读次数:198
uboot的relocation原理详细分析
所谓的relocation,就是重定位,uboot运行后会将自身代码拷贝到sdram的另一个位置继续运行,这个在uboot启动流程分析中说过。 但基于以前的理解,一个完整可运行的bin文件,link时指定的链接地址,load时的加载地址,运行时的运行地址,这3个地址应该是一致的, relocation后运行地址不同于加载地址 特别是链接地址,ARM的寻址会不会出现问题?...
分类:其他好文   时间:2014-07-12 19:23:40    阅读次数:360
poj 1274The Perfect Stall
第一次接触二分图匹配。 这题是一个匈牙利算法的模板题直接套就行。 题意是  给你奶牛和谷仓的个数a和b,接下来a行是奶牛喜欢去的谷仓。第一个是谷仓个数,接下来是谷仓编号。 这里我们把行当奶牛,列当谷仓。 在套模板。。ok;#include #include int map[1005][1005]; int a,b,link[1005],use[1005]; int dfs(int cap...
分类:其他好文   时间:2014-07-12 18:31:19    阅读次数:245
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!