Bridges-Java-2.3.2  2.3.2
Bridges(JavaAPI)
Classes
Package bridges.base

Classes

class  ADTVisualizer
 The Bridges object uses this class to keep track of the Visualization representation prior to passing the information to the Bridges Server. More...
 
class  Array
 This class can be used to create arrays of type Element<E> where E is a generic type representation application specific data. Arrays are internally represented as 1D arrays; currently 1D, 2D and 3D arrays are supported. More...
 
class  ArrayElement
 
class  ArrayOfElement
 
class  AVLTreeElement
 This class extends the BSTElement class for use in building AVL trees. AVL tree elements include a 'height' and a 'balFactor' value, representing the height and balance factor of the AVL tree at that node, respectively. This is useful in representing AVL trees. More...
 
class  BinTreeElement
 This class can be used to create tree element objects with left and right pointers. More...
 
class  BSTElement
 This class extends the BinTreeElement class by adding a 'key' value for use in a binary search tree implementations. More...
 
class  CircDLelement
 This class can be used to instantiate Circular Doubly Linked List Elements. More...
 
class  CircSLelement
 This class can be used to instantiate Singly Linked Circular List Elements. More...
 
class  Color
 This class is used to represent colors in BRIDGES. More...
 
class  DataStruct
 This is an abstract super class that is extended by all Bridges subclasses and provides some methods that are used universally across BRIDGES. More...
 
class  DLelement
 This class is used to create doubly linked element objects. More...
 
class  Edge
 This class is used to represent the edges in a graph and will appear as links in the BRIDGES graph visualization. More...
 
class  Element
 This is the main superclass in BRIDGES for deriving a number of objects used in building arrays, lists, trees and graph data structures. More...
 
class  ElementVisualizer
 This class is used to store the visual attributes of BRIDGES elements. More...
 
class  GraphAdjList
 The GraphAdjList class can be used to represent adjacency list based graphs in BRIDGES with E represnting a data specific generic parameter. The class is simply a wrapper around the C++ STL unordered_map class and, thus, derives all its operations from it. BRIDGES provides methods to visualize the graph and its contents. More...
 
class  GraphAdjMatrix
 The GraphAdjMatrix class can be used to represent adjacency matrix based * graphs in BRIDGES. More...
 
class  LinkVisualizer
 This class maintains visual properties of links in all relevant data structures using BRIDGES. More...
 
class  SLelement
 This class can be used to instantiate Singly List Elements. More...
 
class  TreeElement
 This class extends Element to represent general trees with arbitrary number of children. More...
 

Detailed Description

This class is created to solve the problem with generic arrays and type erasure