D7 一般把栈叫堆栈;数据结构上的堆和栈是两个不同的东西; Unit {Queue(队列),先进先出;Stack(堆栈),后进先出}unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, ...
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
1. Grid: by default showing content in Y axis (column), Flex: by default showing content in X axis. Exp: If you want to style a header.. you can use f ...
分类:
Web程序 时间:
2021-03-09 13:32:34
阅读次数:
0
1.order属性定义项目的排列顺序,数值越小,排列越靠前,默认为0 .item{ order:1; } 2.flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间也不放大。 如果所有项目的flex-grow 属性为1,他们将等分剩余空间,如果一个flex-grow属性为2,其他项目 ...
分类:
其他好文 时间:
2021-03-08 13:46:23
阅读次数:
0
Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c ...
分类:
其他好文 时间:
2021-03-06 14:47:20
阅读次数:
0
一、底层知识背景 1.1 GPU和CPU的区别? 主流 CPU(Central Processing Unit,中央处理器)芯片上有四级缓存,消耗了大量晶体管,在运行时需要大量电力;主流 GPU(Graphics Processing Unit,图形处理器)芯片最多有两层缓存,且 GPU 可以利用晶 ...
分类:
其他好文 时间:
2021-03-05 13:14:06
阅读次数:
0
SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 svg 的子标签 矩形<rect>、 圆形<circle> 椭圆 <ellipse> 线 <line> 路径 <path> 多边形 <polygon> 折线 <polyline> ...
分类:
其他好文 时间:
2021-02-27 13:04:16
阅读次数:
0
使用css3的flex模型实现一个居中布局 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>flex居中布局</title> 6 <style type="text/css"> 7 html, 8 bod ...
分类:
Web程序 时间:
2021-02-15 12:24:42
阅读次数:
0
一、传统盒模型布局 二、flex弹性布局 详见之前文章 https://www.cnblogs.com/cxyqts/p/13048633.html 三、absolute定位布局 四、gird栅格布局 五、float浮动布局 ...
分类:
Web程序 时间:
2021-02-05 10:46:21
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum ...
分类:
其他好文 时间:
2021-02-02 10:38:45
阅读次数:
0