class documentation

class DLNode:

Constructor: DLNode(x, info)

View In Hierarchy

A class to represent a node in a doubly linked list.

Method __init__ Initialize a node with the given x-coordinate and info.
Method copy copy the node
Instance Variable closest Undocumented
Instance Variable cnext Undocumented
Instance Variable info Undocumented
Instance Variable ndomr Undocumented
Instance Variable next Undocumented
Instance Variable prev Undocumented
Instance Variable x Undocumented
def __init__(self, x=None, info=None):

Initialize a node with the given x-coordinate and info.

def copy(self):

copy the node

closest: list =

Undocumented

cnext: list =

Undocumented

info =

Undocumented

ndomr: int =

Undocumented

next: list =

Undocumented

prev: list =

Undocumented

x =

Undocumented