Uses of Class
pqrtree.ChildrenDoublyLinkedList

Uses of ChildrenDoublyLinkedList in pqrtree
 

Fields in pqrtree declared as ChildrenDoublyLinkedList
private  ChildrenDoublyLinkedList PQRNode.children
           
 

Methods in pqrtree that return ChildrenDoublyLinkedList
 ChildrenDoublyLinkedList ColoredDoublyLinkedList.extractColoredChildren(PQRNode newAncestor, ChildrenDoublyLinkedList childList)
          Extracts colored children from the children list and creates a new list with them all.
 ChildrenDoublyLinkedList ColoredDoublyLinkedList.extractColoredChildrenExceptOne(PQRNode newAncestor, ChildrenDoublyLinkedList childList, ListNode excluded)
          Extracts colored children, except one, from the children list and creates a new list with them all.
 ChildrenDoublyLinkedList PQRNode.getChildren()
          Gets the children's list and returns it.
 

Methods in pqrtree with parameters of type ChildrenDoublyLinkedList
 ChildrenDoublyLinkedList ColoredDoublyLinkedList.extractColoredChildren(PQRNode newAncestor, ChildrenDoublyLinkedList childList)
          Extracts colored children from the children list and creates a new list with them all.
 ChildrenDoublyLinkedList ColoredDoublyLinkedList.extractColoredChildrenExceptOne(PQRNode newAncestor, ChildrenDoublyLinkedList childList, ListNode excluded)
          Extracts colored children, except one, from the children list and creates a new list with them all.
 void PQRNode.setChildren(ChildrenDoublyLinkedList newList)
          Changes the children's list by another one.