重点: 在scroll view和stack view之间加一个UIView。 竖向居中Tutorial: https://stackoverflow.com/questions/50766400/center-uiview-vertically-in-scroll-view-when-its-dy ...
分类:
其他好文 时间:
2019-11-01 12:55:45
阅读次数:
297
【环境:VS2019】 【编写一个DLL并导出函数】 1、新建动态链接库:V_BJZ [framework.h] [dll1.cpp] 2、编译链接后的文件夹(划重点:之后要用的呀~) 【使用动态加载方式调用该函数】 1、新建项目V_DY [DY.cpp] 【使用静态加载的方式调用该函数】 1、新建 ...
分类:
编程语言 时间:
2019-10-28 01:02:46
阅读次数:
139
绘图设备的局部物理坐标——视口坐标(viewport)坐标 ( width(),height()) 逻辑坐标——窗口(window)坐标 常用的坐标变换是平移、旋转和缩放 1. 坐标平移 translate( qreal dx , qreal dy) 缺省的坐标体系中,缺省的单位是像素 2. 坐标旋 ...
分类:
其他好文 时间:
2019-10-19 19:11:07
阅读次数:
134
A. Pens and Pencils 题目链接:https://codeforces.com/contest/1244/problem/A 题意: 给定五个数 a , b , c , d , k 求一对 x , y 使得 cx >= a , dy >= b , 且 x + y <= k 若无法找到 ...
分类:
其他好文 时间:
2019-10-19 15:10:38
阅读次数:
85
? 环境准备 1、安装 FFmpeg "音/视频工具 FFmpeg 简易安装文档" 2、安装 ffmpeg python 3、【可选】安装 opencv python 4、【可选】安装 numpy ? 视频帧提取 准备视频素材 抖音视频素材下载: "https://anoyi.com/dy/top" ...
分类:
编程语言 时间:
2019-10-14 10:20:40
阅读次数:
135
下面讨论 最大值 ,最小值类似. 令$f[i][j][0/1]$表示从右或上走到$(i,j)$时最大拐弯数. $$\therefore f[i][j][k]=\begin{cases}\max(f[i][j][k],\max(f[i dx[k]][j dy[k]][k],f[i dx[k]][j d ...
分类:
其他好文 时间:
2019-10-13 23:29:04
阅读次数:
115
#include<bits/stdc++.h> using namespace std; int n,m,bx,by,cs; int mp[25][25]; int dx[]={0,1,-1,0},dy[]={1,0,0,-1}; void bfs1(int sx,int sy,int tx,int... ...
分类:
其他好文 时间:
2019-10-13 20:32:40
阅读次数:
104
先记录地址,之后再整理 参考地址:https://blog.csdn.net/qq_28364999/article/details/81109666 https://blog.csdn.net/dy_f/article/details/84926923 https://blog.csdn.net/ ...
分类:
其他好文 时间:
2019-10-12 19:11:21
阅读次数:
104
什么是佩尔方程 $$x^2-Dy^2 = 1,\ D \in \mathbb{N}^+$$ 佩尔方程的解 如果 $D$ 是完全平方数,则方程只有平凡解: $(\pm 1, 0)$. 如果 $D$ 不是平方数,设 $(x_1, y_1)$ 和 $(x_2, y_2)$ 是上述方程的两个解,那么 $(x ...
分类:
其他好文 时间:
2019-10-11 10:51:54
阅读次数:
85
挺好玩的一场比赛。 "链接" A 打表,打到$2e4$左右会发现有一个长度$104$的循环节。 c++ include using namespace std; int col[5010][5010]; int dx[4] = {1,0, 1,0},dy[4] = {0,1,0, 1}; long ...
分类:
编程语言 时间:
2019-10-05 00:34:15
阅读次数:
113