最新 最热

js弹窗小例子

布局大概是这样:Paste_Image.png首先,弄一个DIV,把弹窗的模子弄出来。 <divid="box"style="width:300px;height:180px;backgroun

2018-05-17
1

CNN 卷积层输入Map大小计算

对于输出的size计算: out_height=((input_height - filter_height + padding_top+padding_bottom)/stride_height )+1 out_width=((input_width - filter_width + padding_left+p...

2018-05-09
1

Augmentor 使用介绍

<img src="https://ask.qcloudimg.com/draft/1215004/jfwdwyxm4.jpg" style="border:5px solid black;border-radius:15px;">

2018-04-01
1

hdu 3518 (后缀数组)

题目描述:  找出一个字符串中至少重复出现两次的字串的个数(重复出现时不能重叠)。  code:     后缀数组处理,对于得到height 进行查找...  参考http://blog.csdn.net/mishifangxiangdefeng/article/details/71...

2018-03-26
0

Extjs 项目中常用的小技巧,也许你用得着(2)

接着来,也是刚刚遇到的panel怎么进行收缩 这会panel就会出现这个点这个就可以收缩了 collapsible: true, panel怎么随便拉伸,也就是让那个小黑三角出现

2018-03-05
1

双飞翼布局的改造 box-sizing和margin负值的应用

box-sizing + margin负值 升级双飞翼布局一、box-sizing属性.content-size, .border-size{ width: 200px; heig

2018-01-17
1

Leetcode 110 Balanced Binary Tree

Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the...

2018-01-12
1

Leetcode 108 Convert Sorted Array to Binary Search Tree

Given an array where elements are sorted in ascending order, convert it to a height balanced BST. 将有序数组转化为二叉搜索树,其实题目说的不清楚,应该是二叉平衡树。二分的思想。/** * Definition f......

2018-01-12
0

WPF/Silverlight Layout 系统概述——Arrange

上一篇我们介绍了WPF/Silverlight Layout系统的Measure过程,本文将继续介绍Arrange过程。Arrange过程概述普通基类属性对Arrange过程的影响我们知道Measure过程是在确定DesiredSize的大小,以便Arrange过程参考这个Desir...

2018-01-10
1

一年前的焦点bug终于找到原因了, 图标文本对齐完美了~

该文章讲述了作者在一年前遇到的一个焦点bug,以及如何解决它。这个bug是在点击可编辑区域的空白区域时,光标位置会偏移。作者发现问题的原因是由于给定的元素的顶部的偏移量。通过将元素的顶部偏移量设置为0,可以解决这...

2017-12-29
1