最重要的Kruskal和Prime算法,先理解,后期可以选择记忆。 ...
分类:
其他好文 时间:
2020-04-21 13:10:10
阅读次数:
93
摄像头测距 深度检测主要技术方法: 1.双目匹配(双RGB摄像头+可选的照明系统) 三角测量原理即目标点在左右两幅视图中成像的横坐标之间存在的差异(视差Disparity),与目标点到成像平面的距离成反比例的关系:Z = ft/d;得到深度信息。 双目匹配采用三角测量原理完全基于图像处理技术,通过寻 ...
分类:
其他好文 时间:
2020-04-21 09:21:11
阅读次数:
114
题目描述: 方法一: class Solution: def getMaxRepetitions(self, s1: str, n1: int, s2: str, n2: int) -> int: if n1 == 0: return 0 s1cnt, index, s2cnt = 0, 0, 0 ...
分类:
其他好文 时间:
2020-04-20 13:46:01
阅读次数:
42
Problem : Given two integers L and R, find the count of numbers in the range [L, R] (inclusive) having a prime number of set bits in their binary repr ...
分类:
其他好文 时间:
2020-04-20 11:50:44
阅读次数:
65
首先,我们考虑$f(x)$在$\mathbb R$上都是定义的。根据定义,显然有$f(0)=0$;其次,对于$x\neq0$,不妨先设$x\gt0$,则有在$t\rightarrow\frac1t$的积分变换下为 $$ 0<f(x)=\int_0^x\left|\sin\frac1t\right|\ ...
分类:
其他好文 时间:
2020-04-12 23:05:40
阅读次数:
248
阿里云突发性20%服务器安装MYSQL(5.7.17)后关于设置远程访问的问题,由于这次踩了不少坑,网上针对性的资料较少(也可能是自己查询资料方法不对),经过折腾,总算是捣鼓了出来. 下载地址(非官网):https://pan.baidu.com/s/1BAWrl81UueIQSSrs25Frlg ...
分类:
数据库 时间:
2020-04-06 15:52:04
阅读次数:
90
Problem : Count the number of prime numbers less than a non negative number, n. Example: 思路 : Solution (C++) : 性能 : Runtime: 208 ms Memory Usage: 6.6 ...
分类:
其他好文 时间:
2020-04-06 00:11:19
阅读次数:
84
UniGUI介绍 : http://www.unigui.com/ Examples (Mobile) : http://prime.fmsoft.net/demo/touch/mdemo65.dll/m Delphi编程技巧大全: http://www.delphitop.com/html/uni ...
分类:
其他好文 时间:
2020-04-03 11:54:50
阅读次数:
131
第一做容斥原理,开始真的不太好理解 题意:给出a,b<=1e19 n<=1e9 ,问[a,b]中与n互质的个数 考虑[a,b]中与n不互质的个数,对n唯一分解定理,与n不互质的个数即为n/p,但是考虑到会有重复,且若数字个数是奇数则要+,偶数减去,因此借助二进制遍历每一种情况(极其神奇的思想) 代码 ...
分类:
其他好文 时间:
2020-04-01 21:02:50
阅读次数:
69
# 题意 给定两个整数l,r,求在[l,r]区间内距离最近的一对相邻质数,和距离最远的一对相邻质数 l,r ∈ [1 , 231-1] 其中r-l <= 1e6 # 题解 l,r的范围很大,大约是2e9 线性算法也无法求出[1,r]的所有质数,但是r-l的范围小, 任何一个合数必定会包含一个不超过 ...
分类:
其他好文 时间:
2020-03-30 23:26:05
阅读次数:
70