We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b987a0 commit 660976fCopy full SHA for 660976f
data_structures/heap/fibonacci_heap.py
@@ -38,9 +38,11 @@ class FibonacciHeapNode:
38
degree (int): The number of children of this node.
39
parent (FibonacciHeapNode): The parent of this node.
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.
+ mark (bool): Whether this node has
42
+ lost a child since it became a child of another node.
43
next (FibonacciHeapNode): The next sibling in the circular doubly-linked list.
- prev (FibonacciHeapNode): The previous sibling in the circular doubly-linked list.
44
+ prev (FibonacciHeapNode): The previous sibling
45
+ in the circular doubly-linked list.
46
"""
47
48
def __init__(self, key, value=None):
0 commit comments