class FibonacciHeap::CircularDoublyLinkedList::Sentinel
A Sentinel
node to simplify boundary conditions in the linked list.
Attributes
next[RW]
prev[RW]
Public Class Methods
new()
click to toggle source
# File lib/fibonacci_heap/circular_doubly_linked_list.rb, line 13 def initialize @next = self @prev = self end