http://acm.hdu.edu.cn/showproblem.php?pid=2476 String painter Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Su ...
分类:
其他好文 时间:
2019-10-27 20:31:29
阅读次数:
108
原文链接:https://blog.csdn.net/qq_40028324/article/details/80035129 1.文档流 - 所有的元素默认情况下都是在文档流中存在的- 文档流是网页的最底层- 元素在文档流中的特点:- 块元素1.默认宽度是父元素的全部2.默认高度被内容(子元素)撑 ...
分类:
其他好文 时间:
2019-10-27 16:56:35
阅读次数:
61
行内元素的特点有: 1、与其他元素在同一行 2、宽度(width)、高度(height)、内边距的top/bottom(padding-top/padding-bottom)和外边距的top/bottom(margin-top/margin-bottom)不可设置 其实这4个属性是可以设置的,但是不 ...
分类:
其他好文 时间:
2019-10-26 18:59:44
阅读次数:
62
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. ...
分类:
其他好文 时间:
2019-10-26 14:57:10
阅读次数:
55
原题(Medium): 在 O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序。 思路:自底向上(bottom-to-up)、归并排序(Merge Sort) 题目对时间复杂度和空间复杂度做出了要求,常用的对数级别的排序方法不多,由于这里并不是双向链表,所以快排不太可能,可以使用归 ...
分类:
编程语言 时间:
2019-10-26 13:25:17
阅读次数:
99
MySQL中的系统函数sleep,实际应用的场景不多,一般用来做实验测试,昨天在测试的时候,意外发现sleep函数的一个特殊现象。如果在查询语句中使用sleep函数,那么休眠的时间跟返回的记录有关。如下测试所示: mysql> create table test(id int);Query OK, ... ...
分类:
数据库 时间:
2019-10-26 12:08:08
阅读次数:
125
When elements have a specified position, such as fixed or relative, the CSS offset properties right, left, top, and bottom can be used in animation ru ...
分类:
移动开发 时间:
2019-10-25 16:46:52
阅读次数:
206
If the FN key does have a green light just press and hold down the FN button on the bottom left of the keyboard and tap the F1 key at the top of the k ...
分类:
其他好文 时间:
2019-10-25 10:04:33
阅读次数:
99
margin塌陷问题 当时说到了盒模型,盒模型包含着margin,为什么要在这里说margin呢?因为元素和元素在垂直方向上margin里面有坑。 我们来看一个例子: html结构: css样式: 当给两个标准流下兄弟盒子 设置垂直方向上的margin时,那么以较大的为准,那么我们称这种现象叫塌陷。 ...
分类:
Web程序 时间:
2019-10-23 16:41:42
阅读次数:
104
之前一直有个困扰,手机不支持双电信卡,因为常用的有两个电信卡,如果想同时用的话,就只能带两个手机很麻烦。以前因为电信CDMA技术专利收费比较贵,手机厂商要根据基带数量向高通收费,如果双CDMA基带就要除双倍的专利费,而双电信卡的需求不大,所以没有生产双电信的手机。但随着4G的普及,通话语音可以走4G... ...
分类:
移动开发 时间:
2019-10-23 09:57:15
阅读次数:
103