| Class and Description |
|---|
| AdjMatrixEdgeWeightedDigraph
The AdjMatrixEdgeWeightedDigraph class represents a edge-weighted
digraph of vertices named 0 through V - 1, where each
directed edge is of type
DirectedEdge and has a real-valued weight. |
| Alphabet
Compilation: javac Alphabet.java
Execution: java Alphabet
A data type for alphabets, for use with string-processing code
that must convert between an alphabet of size R and the integers
0 through R-1.
|
| Complex
Compilation: javac Complex.java
Execution: java Complex
Data type for complex numbers.
|
| Counter
The Counter class is a mutable data type to encapsulate a counter.
|
| Date
The Date class is an immutable data type to encapsulate a
date (day, month, and year).
|
| Digraph
The Digraph class represents a directed graph of vertices
named 0 through V - 1.
|
| DirectedEdge
The DirectedEdge class represents a weighted edge in an
EdgeWeightedDigraph. |
| Edge
The Edge class represents a weighted edge in an
EdgeWeightedGraph. |
| EdgeWeightedDigraph
The EdgeWeightedDigraph class represents a edge-weighted
digraph of vertices named 0 through V - 1, where each
directed edge is of type
DirectedEdge and has a real-valued weight. |
| EdgeWeightedGraph
The EdgeWeightedGraph class represents an edge-weighted
graph of vertices named 0 through V - 1, where each
undirected edge is of type
Edge and has a real-valued weight. |
| FlowEdge
The FlowEdge class represents a capacitated edge with a
flow in a
FlowNetwork. |
| FlowNetwork
The FlowNetwork class represents a capacitated network
with vertices named 0 through V - 1, where each directed
edge is of type
FlowEdge and has a real-valued capacity
and flow. |
| Graph
The Graph class represents an undirected graph of vertices
named 0 through V - 1.
|
| Interval1D
The Interval1D class represents a one-dimensional closed interval.
|
| Interval2D
The Interval2D class represents a closed two-dimensional interval,
which represents all points (x, y) with both xleft <= x <= xright and
yleft <= y <= right.
|
| Particle |
| Point2D
The Point class is an immutable data type to encapsulate a
two-dimensional point with real-value coordinates.
|
| SET
The SET class represents an ordered set of comparable keys.
|
| SparseVector
Compilation: javac SparseVector.java
Execution: java SparseVector
A sparse vector, implementing using a symbol table.
|
| Transaction
The Transaction class is an immutable data type to encapsulate a
commercial transaction with a customer name, date, and amount.
|
| Vector
The Vector class represents a d-dimensional mathematical vector.
|
Copyright © 2014. All Rights Reserved.