spoolight seting 1ORACLE_HOME=D:\oracle\product\11.2.0\client_1set SQLPATH=D:\oracle\product\11.2.0\client_1set LOCAL=D:\oracle\product\11.2.0\client_ ...
分类:
数据库 时间:
2018-01-12 01:47:01
阅读次数:
336
Equation of a circle passing through 3 points (x1, y1) (x2, y2) and (x3, y3).The equation of the circle is described by the equation:After substitutin... ...
分类:
其他好文 时间:
2018-01-11 11:26:54
阅读次数:
235
kNN算法概述 kNN算法是比较好理解,也比较容易编写的分类算法。 简单地说,kNN算法采用测量不同特征值之间的距离方法进行分类。 我们可以假设在一个N维空间中有很多个点,然后这些点被分为几个类。相同类的点,肯定是聚集在一起的,它们之间的距离相比于和其他类的点来说,非常近。如果现在有个新的点,我们不 ...
分类:
编程语言 时间:
2018-01-07 16:04:58
阅读次数:
941
import numpy as np import pylab as pl from sklearn import svm # we create 40 separable points #np.random.seed(0) X = np.r_[np.random.randn(100, 2) - [... ...
分类:
其他好文 时间:
2018-01-07 14:03:35
阅读次数:
292
题链: http://poj.org/problem?id=1329 题解: 计算几何,求过不共线的三点的圆 就是用向量暴力算出来的东西。。。 (设出外心M的坐标,由于$|\vec{MA}|=|\vec{MB}|=|\vec{MC}|$,可以解出M点坐标。) 代码: ...
分类:
其他好文 时间:
2018-01-07 14:02:28
阅读次数:
148
A. The Way to Home A frog lives on the axis Ox and needs to reach home which is in the point n. She starts from the point 1. The frog can jump to the ...
分类:
其他好文 时间:
2018-01-06 15:54:41
阅读次数:
293
"原题" 给定长为 n 的一个序列,接下来 m 次询问,每次询问区间 [ l , r ] 内有多少个不同的数。 莫队: 离线$O(n\log(n))$。 将序列分块。 以左端点所在块为第一关键字,右端点位置为第二关键字sort,然后two points移动暴力记录即可。 cpp include in ...
分类:
其他好文 时间:
2018-01-04 11:07:35
阅读次数:
175
题解: 暴力,模拟。 把字符串压缩一下,相同的处理成一位,记录下个数,然后暴力模拟即可。 ...
分类:
其他好文 时间:
2018-01-03 21:06:10
阅读次数:
150
Given the coordinates of four points in 2D space, return whether the four points could construct a square. The coordinate (x,y) of a point is represen ...
分类:
其他好文 时间:
2017-12-30 12:30:04
阅读次数:
105
canvas-nest.js 这个js文件可以用来实现炫酷的线条与鼠标进行交互的功能,具体效果如图所示 js具体源码如下: 在html网页中body的标签中添加script标签,如下所示 color 颜色自定义,opactity 是透明度,一般来说0.5-1就可以了,count的是数量,不要太大,太 ...
分类:
Web程序 时间:
2017-12-29 18:58:13
阅读次数:
605