搜索资源列表
aaa
- 分治法解决最近对问题 画一条垂直线x=c,把这些给定点分为两个包含n/2个点的子集S1和S2,使得n/2个点位于直线的左侧或直线上,另外n/2个点位于直线的右侧或直线上;遵循分治法的思想,递归地求出左子集S1和右子集S2中的最近对,分别为d1与d2;之后d=min{d1,d2}。合并过程:在以垂线x=c为对称轴,2d为宽度的区域内求最近两个点的距离,记为d3;求D=min{d,d3};
DDALine
- 用C++编者的画直线的小程序,使用DDLINE算法,实现基本的一些功能-C++ editor with a line of small paintings, the use of DDLINE algorithm, the basic features
dda
- C++,关于DDA算法画直线的小程序-C++, DDA algorithm for drawing a straight line on a small program .....
BresenhamLine
- 在VC中实现Bresenham算法画直线-Bresenham algorithm in VC draw a straight line