RI (Reverse Integration) / FI (Forward Integration)RI :child branch => parent branchFI :parent branch =>child branch
分类:
其他好文 时间:
2014-06-15 16:52:09
阅读次数:
216
jQuery实现table隔行换色和鼠标经过变色
一、隔行换色
$("tr:odd").css("background-color","#eeeeee");
$("tr:even").css("background-color","#ffffff");
或者一行搞定:
$("table tr:nth-child(odd)").css("background-color","#eeeeee");
二、鼠标经过变色
$("tr").live({
mouseover:function(){
$(this)....
分类:
Web程序 时间:
2014-06-15 10:15:32
阅读次数:
329
#include #include #include #include struct message{ int i; int j;};void *hello(struct message *str){ printf("child, the tid=%lu, pid=%d\n",pt...
分类:
编程语言 时间:
2014-06-15 09:40:46
阅读次数:
526
写得很好: http://blog.csdn.net/hitwhylz/article/details/19689567CCNode类的setPosition,getPosition函数如果是一个Node的Child则获取的坐标就是该Node的本地坐标(原点为父节点左下角)。 另一个关键问...
分类:
其他好文 时间:
2014-06-15 06:25:50
阅读次数:
203
输入下边加粗的缩写,然后Tab,就OK了http://docs.emmet.io/cheat-sheet/html:4t Document ${child}html:4s Document ${child}html:xt ${child}...
分类:
其他好文 时间:
2014-06-14 17:02:04
阅读次数:
226
parent-child关系ManagedObjectContext应用
分类:
其他好文 时间:
2014-06-12 14:07:39
阅读次数:
245
注意题目长度不能考虑前缀,而且如果即存在一个选项的长度的两倍小于其他所有选项的长度,也存在一个选项的长度大于其他选项长度的两倍,则答案不是一个好的选择,只能选择C。#include
#include #include #include using namespace std;struct Answe...
分类:
其他好文 时间:
2014-06-10 19:30:17
阅读次数:
208
注意此题,每一个部分都有一个能量值v[i],他移除第i部分所需的能量是v[f[1]]+v[f[2]]+...+v[f[k]],其中f[1],f[2],...,f[k]是与i直接相连(且还未被移除)的部分的编号。注意题目移除的都是与第i部分直接相连的部分的能量值,将本题目简化得,只考虑两个点1和2,1...
分类:
其他好文 时间:
2014-06-10 16:57:04
阅读次数:
187
There areNchildren standing in a line. Each
child is assigned a rating value.You are giving candies to these children
subjected to the following requi...
分类:
其他好文 时间:
2014-06-10 00:35:47
阅读次数:
246