- newContext() - Static method in class datastructures.common.LJV
-
- newInstanceArray() - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with an array.
- newInstanceArray(int) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with an array that
has an initial capacity
- newInstanceArray(IList<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with an array.
- newInstanceArray(Collection<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with an array.
- newInstanceDoublyLinkedList() - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a
doubly-linked list.
- newInstanceDoublyLinkedList(IList<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a
doubly-linked list.
- newInstanceDoublyLinkedList(Collection<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a
doubly-linked list.
- newInstanceGraph(boolean, boolean, int) - Static method in class datastructures.graph.GraphFactory
-
This method returns an instance of IGraph with a number of vertices.
- newInstanceGraph(boolean, boolean) - Static method in class datastructures.graph.GraphFactory
-
This method returns an instance of IGraph
- newInstanceLinkedList() - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a linked list.
- newInstanceLinkedList(IList<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a linked list.
- newInstanceLinkedList(Collection<T>) - Static method in class datastructures.list.ListFactory
-
This method returns an instance of a IList implemented with a linked list.
- newInstanceMPQM() - Static method in class datastructures.mpq.MPQFactory
-
This method returns an instance of IMPQ
- newInstanceMPQM(int) - Static method in class datastructures.mpq.MPQFactory
-
This method returns an instance of IMPQ with an initial capacity
- newInstanceQueue() - Static method in class datastructures.queue.QueueFactory
-
This method returns an instance of a IQueue implemented with a linked list
- newInstanceQueueArray(int) - Static method in class datastructures.queue.QueueFactory
-
This method returns an instance of a IQueue implemented with a circular
array
- newInstanceStack() - Static method in class datastructures.stack.StackFactory
-
This method returns an instance of a IStack implemented with a
doubly-linked list.
- newInstanceStackArray() - Static method in class datastructures.stack.StackFactory
-
This method returns an instance of a IStack implemented with an array.
- newInstanceTree(TreeNode<T>) - Static method in class datastructures.tree.TreeFactory
-
Returns an instance of Tree
- numElements() - Method in interface datastructures.list.IList
-
Returns the number of elements in the list
- numElements() - Method in interface datastructures.mpq.IMPQ
-
Returns the number of elements in the list
- numElements() - Method in interface datastructures.queue.IQueue
-
Returns the number of elements in the queue
- numElements() - Method in interface datastructures.stack.IStack
-
Returns the number of elements in the stack