File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,11 @@ class FibonacciHeapNode:
38
38
degree (int): The number of children of this node.
39
39
parent (FibonacciHeapNode): The parent of this node.
40
40
child (FibonacciHeapNode): The first child of this node.
41
- mark (bool): Whether this node has lost a child since it became a child of another node.
41
+ mark (bool): Whether this node has
42
+ lost a child since it became a child of another node.
42
43
next (FibonacciHeapNode): The next sibling in the circular doubly-linked list.
43
- prev (FibonacciHeapNode): The previous sibling in the circular doubly-linked list.
44
+ prev (FibonacciHeapNode): The previous sibling
45
+ in the circular doubly-linked list.
44
46
"""
45
47
46
48
def __init__ (self , key , value = None ):
You can’t perform that action at this time.
0 commit comments