Click or drag to resize
RandomSeq Class
The RandomSeq class is a client that prints out a pseudorandom sequence of real numbers in a given range.
Inheritance Hierarchy
SystemObject
  Algs4NetRandomSeq

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class RandomSeq

The RandomSeq type exposes the following members.

Methods
  NameDescription
Public methodStatic memberMainTest
Reads in two command-line arguments lo and hi and prints N uniformly random real numbers in [lo, hi) to standard output.
Top
Remarks

For additional documentation, see Section 1.1 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.

This class is a C# port from the original Java class RandomSeq implementation by the respective authors.

See Also