先上原理 对于一个非素数来说 1,所有质因子小于等于sqrt(n) 2,只存在一个大于sqrt(n)的质因子,其他质因子都小于sqrt(n) 至于证明,可以用反证法。 若是有多余一个大于sqrt(n)的质因子,这些因子的乘积..... 下面上代码 这里借助一个结构体,当然你也可以用数组 struct ...
分类:
其他好文 时间:
2020-03-16 23:25:12
阅读次数:
74
python实现KNN算法的全体流程代码#1-1KNN算法的原理底层代码import numpy as npimport matplotlib.pyplot as plt #导入相应的数据可视化模块raw_data_X=[[3.393533211,2.331273381], [3.110073483 ...
分类:
编程语言 时间:
2020-03-16 21:52:05
阅读次数:
97
博文由来 在最近的组卷中,看到这样一个题目[来源于数学难卷],大概思考了其解法过程,颇有感触,作以记录; 案例[高中]若命题$“\exists x\in (0,2]$,不等式$e^{2x}+e^{ 2x} a(e^x e^{ x})$A.( \infty,\sqrt{2})$ $B.( \infty ...
分类:
其他好文 时间:
2020-03-16 14:30:47
阅读次数:
94
大地坐标系转空间直角坐标系 import math A_ALIS = 6378137 B_ALIS = 6356752.3142 E = math.sqrt(A_ALIS * A_ALIS - B_ALIS * B_ALIS) / A_ALIS def transform_latlonhei2xyz ...
分类:
其他好文 时间:
2020-03-15 16:21:57
阅读次数:
83
题:https://codeforces.com/contest/1325/problem/F 题意:给出n个点m条边的图,找到节点数大于等于sqrt(n)的环或节点数等于sqrt(n)的独立集; 分析:先找环,找不到环证明一定存在有独立集,独立集的找法就是01染色。 #include<bits/s ...
分类:
其他好文 时间:
2020-03-15 13:38:11
阅读次数:
54
bool isSqr(int n) { int a = (int)(sqrt(n) + 0.5); //四舍五入求整 return a * a == n; } bool isSqr(int n) { int a = (int)(sqrt(n) + 0.0001); return a * a == n ...
分类:
其他好文 时间:
2020-03-14 23:45:43
阅读次数:
56
Robot算子 | | | | | | | 1 | 0 | | 0 | 1 | $Gx$ | | | | | | | 0 | 1 | | 1 |0 | $Gy$ $\left | G \right |=\sqrt{Gx^{2}+Gy^{2}}$ 原图: Robot_x处理后: Robot_y处理后: ...
分类:
其他好文 时间:
2020-03-14 22:15:59
阅读次数:
54
$$\cos \left( A-B\right) =\frac {2\sin A\sin B} {\sin C}\Rightarrow \sin C \cdot \cos \left( A-B\right) =\cos \left( A-B\right) -\cos \left( A+B\right ...
分类:
其他好文 时间:
2020-03-11 01:10:22
阅读次数:
100
1.正三角形 function initLine(){ geometry = new THREE.Geometry(); var material = new THREE.LineBasicMaterial({vertexColors:true}); var p1 = new THREE.Vecto ...
分类:
Web程序 时间:
2020-03-10 22:10:49
阅读次数:
130