码迷,mamicode.com
首页 >  
搜索关键字:father    ( 584个结果
16-margin的用法
margin塌陷问题 当时说到了盒模型,盒模型包含着margin,为什么要在这里说margin呢?因为元素和元素在垂直方向上margin里面有坑。 我们来看一个例子: html结构: <div class="father"> <div class="box1"></div> <div class=" ...
分类:其他好文   时间:2018-11-10 10:39:38    阅读次数:183
Java中static块,构造块,构造函数的执行顺序
结果: Father静态块Son静态块Father构造块Father构造器Son构造块Son构造器Son方法 1 ...
分类:编程语言   时间:2018-11-09 00:44:47    阅读次数:238
并查集 试水 hdu1232
#include <stdio.h> #include <stdlib.h> int n,m; int father[1000],rank[1000]; int count; int find(int x) { if(father[x]==x) return x; else return fathe ...
分类:其他好文   时间:2018-11-08 22:12:27    阅读次数:197
组件之间的通信(持续补充)
vue中: 1.父级传递给子级:父级v-bind一个属性,里边存放数据(value),子级js中props接收一个数组[],以此来传递。 2.子级传递给父级:父级@(v-on)一个函数func_father,子级也@一个函数click,在子级js中函数中触发父级函数func_father,从而子级操 ...
分类:其他好文   时间:2018-10-30 21:13:55    阅读次数:129
【php】php5.0以上,instanceof 用法
1、instanceof php官网:http://php.net/manual/zh/language.operators.type.php 2、instanceof 用于确定一个 PHP 变量是否属于某一类 class 的实例 3、使用方法: 子类son instanceof 父类father ...
分类:Web程序   时间:2018-10-29 12:25:24    阅读次数:258
实现权限树 list2Tree
List tree = new ArrayList(); for (Resource child : list) { boolean mark = false; for (Resource father : list) { if (StringKit.isNotBlank(child.ge... ...
分类:其他好文   时间:2018-10-25 15:34:53    阅读次数:189
js加载条
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ProgressBar</title> <style> *{ margin: 0; padding: 0; } #father{ width: 100%; he ...
分类:Web程序   时间:2018-10-24 22:10:36    阅读次数:215
从Java虚拟机角度分析类的实例化顺序
1.首先展示一下实例代码(Son.java & Father.java) 2.将son.java文件编译为son.class文件,然后使用javap反编译查看Son的字节码指令来分析Son的加载顺序,更利于理解(javap -v -c Son > p.txt)。 3.执行代码"new Son();" ...
分类:编程语言   时间:2018-10-20 12:54:49    阅读次数:182
【xsy1197】 树 二分+点分树+二分
题目大意:给你一棵$n$个点的带权树和正整数$K$,求每个点到其它所有点距离中第$K$大的数值。 其中,边权$≤10000$,$n≤50000$。 我们通过原树构建一棵点分治树,令$fa[u]$为$u$在点分树上的$father$。 对于每个点$u$,我们维护两个有序数组$f$和$g$。 其中$f[ ...
分类:其他好文   时间:2018-10-17 00:10:00    阅读次数:147
【模板】树链剖分
使用方法: sz(size)储存子树大小 dp(deep)储存节点深度 fa(father)储存节点父亲 hs(heavy son)储存节点重儿子 hf储存当前节点所在链的顶端节点 id储存节点编号 nd(node)储存当前编号对应的节点 储存方法:链式前向星 ...
分类:其他好文   时间:2018-10-10 17:52:35    阅读次数:218
584条   上一页 1 ... 13 14 15 16 17 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!