Algorithm
Development Kit 1.0

Package algs.model.data.points

Generators for creating random points according to a variety of distributions.

See:
          Description

Class Summary
CircleGenerator Generators of sample data points along the edge of a circle whose origin is (0,0) and has the given radius (defaults to 1).
HorizontalLineGenerator Generate a set of points that all exist on a horizontal line.
LoadFromFileGenerator Generator of IPoint objects that loads requested points from a designated file (rather then through some computation).
UniformGenerator Generators of sample data points within the [0,1] unit square.
UniqueGenerator Generate sample points whose x and y values are all unique integers ≥ 0.
UnusualGenerator Divide the size into n/4 and create uniform clusters of [0,1] way apart along the +/- X-axis and Y-axis.
VerticalLineGenerator Generate a set of points that all exist on a vertical line (99,y) where y is an integer greater than 0.
 

Package algs.model.data.points Description

Generators for creating random points according to a variety of distributions.

A variety of point generators are provided with the repository. These all have the ability to generate a number of IPoint objects. Each generator extends the generic Generator class.


Algorithm Development Kit 1.0

This code supports the Algorithms in a Nutshell book, published by O'Reilly Media, Inc. in November 2008. Please visit the book web page to learn of any changes to the code repository or to record a potential defect.