|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
ObjectOptGraphable
OptNode
public class OptNode
Optimized implementation of Node. The following optimizations reduce space
and improve performance.
Node,
Serialized Form| Nested Class Summary | |
|---|---|
class |
OptNode.RelatedIterator
An iterator used to iterate over related nodes. |
| Constructor Summary | |
|---|---|
OptNode()
Constructs a new OptimizedNode. |
|
OptNode(int degree)
Constructs a new Optimized Node with a known degree. |
|
| Method Summary | |
|---|---|
void |
add(Edge e)
Adds an edge to the adjacency list of the node. |
int |
getDegree()
Returns the degree of the node. |
Edge |
getEdge(Node other)
Returns an edge in the adjacency list of the node that is adjacent to another specified node. |
Edge[] |
getEdgeArray()
Returns the edge adjacency list of the node as an array. |
List |
getEdges()
Returns the edge adjacency list of the node. |
List |
getEdges(Node other)
Returns a collection of edges in the adjacency list of the node that are adjacent to another specified node. |
Iterator |
getRelated()
This iterator iterates over the underlying edge array of the node. |
void |
remove(Edge e)
Not supported. |
void |
setDegree(int degree)
Sets the degree of the node. |
| Methods inherited from class OptGraphable |
|---|
getCount, getID, getObject, isVisited, setCount, setID, setObject, setVisited |
| Methods inherited from class Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface Graphable |
|---|
getCount, getID, getObject, isVisited, setCount, setID, setObject, setVisited |
| Constructor Detail |
|---|
public OptNode()
public OptNode(int degree)
degree - The degree of the node.| Method Detail |
|---|
public void add(Edge e)
Node
add in interface Nodee - Adjacent edge to add.Node.add(Edge)public void remove(Edge e)
remove in interface Nodee - Adjacent edge to remove.
UnsupportedOperationExceptionNode.remove(Edge)public Edge getEdge(Node other)
Node
getEdge in interface Nodeother - The other node that the desired edge to return is adjacent to.
Node.getEdge(Node)public List getEdges(Node other)
Node
getEdges in interface Nodeother - The other node that the desired edges to return are
adjacent to.
Node.getEdges(Node)public Edge[] getEdgeArray()
public List getEdges()
Node
getEdges in interface NodeNode.getEdges()public void setDegree(int degree)
degree - The degree of the node / size of edge adjacency array.public int getDegree()
Node
getDegree in interface NodeNode.getDegree()public Iterator getRelated()
getRelated in interface GraphableGraphable.getRelated()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||