码迷,mamicode.com
首页 >  
搜索关键字:child    ( 3634个结果
FI & RI
RI (Reverse Integration) / FI (Forward Integration)RI :child branch => parent branchFI :parent branch =>child branch
分类:其他好文   时间:2014-06-15 16:52:09    阅读次数:216
jQuery实现table隔行换色和鼠标经过变色
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
Linux下线程pid和tid
#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
cocos2d-x 坐标系
写得很好: http://blog.csdn.net/hitwhylz/article/details/19689567CCNode类的setPosition,getPosition函数如果是一个Node的Child则获取的坐标就是该Node的本地坐标(原点为父节点左下角)。 另一个关键问...
分类:其他好文   时间:2014-06-15 06:25:50    阅读次数:203
Emmet 也有快速生成文件头的功能
输入下边加粗的缩写,然后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
【CoreData】parent-child关系ManagedObjectContext应用
parent-child关系ManagedObjectContext应用
分类:其他好文   时间:2014-06-12 14:07:39    阅读次数:245
Codeforces Round #250 (Div. 2) A. The Child and Homework
注意题目长度不能考虑前缀,而且如果即存在一个选项的长度的两倍小于其他所有选项的长度,也存在一个选项的长度大于其他选项长度的两倍,则答案不是一个好的选择,只能选择C。#include #include #include #include using namespace std;struct Answe...
分类:其他好文   时间:2014-06-10 19:30:17    阅读次数:208
Codeforces Round #250 (Div. 2) C、The Child and Toy
注意此题,每一个部分都有一个能量值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
[LeetCode OJ] Candy
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!