效果图 index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <link rel="stylesheet" href="https://cdn.bootcss.co ...
分类:
Web程序 时间:
2020-05-08 15:51:50
阅读次数:
95
``` RECT r; GetWindowRect(this->gameHwnd, &r); // 获取窗口的宽度和高度 int nWidth = r.right - r.left; int nHeight = r.bottom - r.top; MoveWindow(this->gameHwnd,... ...
分类:
移动开发 时间:
2020-05-07 20:00:29
阅读次数:
202
简单,就直接上代码: <div style="text-align: center; font-size:20px; margin-bottom:0px; margin-top:0px; opacity:0.5; ">欢迎来到Panda.Li个人博客!</div> 注意:代码需要放在“页首 “HTM ...
分类:
其他好文 时间:
2020-05-07 01:09:03
阅读次数:
84
数据完整性(Data Integrity)是指数据的精确(Accuracy)和可靠性(Reliability)。 分为以下四类: 1、实体完整性:规定表的每一行在表中是惟一的实体。 2、域完整性:是指表中的列必须满足某种特定的数据类型约束,其中约束又包括 取值范围、精度等规定。 3、参照完整性:是指 ...
分类:
其他好文 时间:
2020-05-05 09:16:08
阅读次数:
695
width:0; height:0; border:100px solid; border-top-color:red; border-right-color:transparent; border-bottom-color:transparent; border-left-color:transp ...
分类:
Web程序 时间:
2020-05-04 13:27:12
阅读次数:
58
一 .head中的各种标签 1. <!DOCTYPE html><html>文档类型声明 声明当前文件是一个HTML5文件文档类型声明在一个html文件中必不可少 而且必须在网页第一行 2. <! > 键盘按键为Ctrl+? 注释 3. <head> head中用于设置网页的相关信息 4. <met ...
分类:
Web程序 时间:
2020-05-04 13:02:22
阅读次数:
1004
栈 定义:栈是一个先进后出的线性表,要求只在表尾进行删除和插入操作 注:对于栈来说,表尾成为栈的栈顶(top),相应的表头称为栈低(bottom)。 因为栈的本质是线性表,所以栈也分为顺序存储结构和链式存储结构;(一般用顺序存储实现) 栈的顺序存储: 1 #include <stdio.h> 2 # ...
分类:
其他好文 时间:
2020-05-04 01:08:58
阅读次数:
75
1819. 最长双交替子串 中文English 给定一个长度为NN且只包含a和b的字符串SS。你需要找出最长的子串长度,使得其中不包含三个连续的字母。即,找出不包含aaa或bbb的最长子串长度。注意SS是其本身的子串。 样例 样例1 输入: "baaabbabbb" 输出: 7 说明: "aabba ...
分类:
其他好文 时间:
2020-05-03 14:34:23
阅读次数:
89
.el-form-item{ margin-bottom: 20px; } .el-input{ width: 200px; } .el-form-item__label{ line-height: 32px; } .el-input__inner{ height: 32px; } .el-form ...
分类:
其他好文 时间:
2020-05-02 20:43:09
阅读次数:
654
参考网址 https://www.cnblogs.com/yzm10/p/10963692.html 输入 2 2 0 0 1 1 1 1 2 2 3 0 0 2 6 1 1 4 4 1 3 3 9 输出 0 0 0 0 2 6 2 5 2 5 求矩阵的交集个数和交集面积画出两个矩阵的交集即可,在草 ...
分类:
其他好文 时间:
2020-05-02 19:26:03
阅读次数:
73