Uses of Class
datastructures.Node

Packages that use Node
datastructures   
 

Uses of Node in datastructures
 

Fields in datastructures declared as Node
 Node Node.previous
           
 

Methods in datastructures that return Node
 Node Stack.pop()
          Retrieves a node from stack.
 Node Minheap.remove_middle(Node n)
          We search for node with same x and y value as given node.
 Node Minheap.removemin()
          Removes and returns smallest node.
 

Methods in datastructures with parameters of type Node
 void Minheap.insert(Node n)
          Inserts a node to heap.
 void Stack.push(Node n)
          Pushes node to stack.
 Node Minheap.remove_middle(Node n)
          We search for node with same x and y value as given node.