Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 whic ...
分类:
其他好文 时间:
2019-12-12 13:14:24
阅读次数:
93
:——是指的伪类 ::——是指的伪元素 1.字面意思: 伪类,1.css中有类选择器,某些元素并未定义类名,就可以通过伪类赋予样式,如:【:nth-child(n)】;2.伪类可以应用于元素执行某种状态,如:【:hover】鼠标经过元素时 伪元素,创建一个新元素应用于文档,但是并不存在于文档中。 常 ...
分类:
Web程序 时间:
2019-12-10 22:36:48
阅读次数:
301
// 冒泡排序 export function bubbleSort(arr) { let i = arr.length - 1; while (i > 0) { let maxIndex = 0; for (let j = 0; j < i; j++) { if (arr[j] > arr[j + ...
分类:
Web程序 时间:
2019-12-10 16:39:31
阅读次数:
112
#!/usr/bin/perl use IPC::SysV qw(IPC_PRIVATE IPC_CREAT S_IRWXU); use IPC::Msg; my $queue = IPC::Msg->new(IPC_PRIVATE, S_IRWXU | IPC_CREAT); $msgtype = ...
分类:
其他好文 时间:
2019-12-10 13:02:06
阅读次数:
112
The header and footer in the tweet embed example have child items that could be arranged as rows using the flex-direction property. This tells CSS to ...
分类:
移动开发 时间:
2019-12-08 22:58:22
阅读次数:
181
js小游戏极简版 (1) 基础布局 <div class = "box"> <p></p> <div class="div"></div> </div> (2)简单的基础样式 * { margin: 0; padding: 0; } div.box { width: 1000px; height: ...
分类:
Web程序 时间:
2019-12-07 16:29:18
阅读次数:
123
LinkedTransferQueue 功能 全名 简述 基于链表的的无界队列。队列的头是某个生产者在队列中停留时间最长的元素。队列的尾部是某个生产者在队列中时间最短的元素。 注意,与大多数集合不同,size方法不是一个常量时间操作。由于这些队列的异步性,确定当前元素的数量需要遍历元素,因此如果在遍 ...
分类:
其他好文 时间:
2019-12-06 19:16:37
阅读次数:
96
hvkhujluhijo hvkhujluhijo hvkhujluhijo hvkhujluhijo hvkhujluhijo <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> tbody tr ...
分类:
Web程序 时间:
2019-12-06 15:18:07
阅读次数:
135
AspectRatio 的作用是根据设置调整子元素 child 的宽高比。 AspectRatio 首先会在布局限制条件允许的范围内尽可能的扩展,widget 的高度是由宽度和比率决定的,类似于 BoxFit 中的 contain,按照固定比率去尽量占满区域。 如果在满足所有限制条件过后无法找到一个 ...
分类:
Web程序 时间:
2019-12-06 11:52:45
阅读次数:
107