- top() - Method in class net.datastructures.ArrayStack
-
Inspects the element at the top of the stack.
- top() - Method in class net.datastructures.NodeStack
-
- top() - Method in interface net.datastructures.Stack
-
Inspect the element at the top of the stack.
- toString() - Method in class net.datastructures.AdjacencyListGraph
-
Returns a string representation of the vertex and edge lists,
separated by a newline.
- toString() - Method in class net.datastructures.ArrayListCompleteBinaryTree
-
Returns a String representing this complete binary tree.
- toString() - Method in class net.datastructures.ArrayStack
-
Returns a string representation of the stack as a list of elements,
with the top element at the end: [ ...
- toString() - Method in class net.datastructures.HashTableMap.HashEntry
-
Entry visualization.
- toString() - Method in class net.datastructures.HeapPriorityQueue
-
Text visualization for debugging purposes
- toString(PositionList<E>) - Static method in class net.datastructures.NodePositionList
-
Returns a textual representation of a given node list
- toString() - Method in class net.datastructures.NodePositionList
-
Returns a textual representation of the list
- toString() - Method in class net.datastructures.NodeQueue
-
- toString() - Method in class net.datastructures.NodeStack
-
Returns a string representation of the stack as a list of elements,
with the top element at the end: [ ...
- toString() - Method in class net.datastructures.SortedListPriorityQueue
-
- TourResult() - Constructor for class net.datastructures.EulerTour.TourResult
-
- Tree<E> - Interface in net.datastructures
-
An interface for a tree where nodes can have an arbitrary number of children.
- TreeNode<E> - Class in net.datastructures
-
Class implementing a node of a binary tree by storing references to
an element, a parent node, a left node, and a right node.
- TreeNode() - Constructor for class net.datastructures.TreeNode
-
Default constructor
- TreeNode(E, TreePosition<E>, PositionList<Position<E>>) - Constructor for class net.datastructures.TreeNode
-
Main constructor
- TreePosition<E> - Interface in net.datastructures
-
Interface for a node of a binary tree.