Class representing a Skip List data structure.
Creates a new SkipList.
The maximum level of the Skip List.
Optional
Probability factor for level generation (default is 0.5).
Deletes a value from the Skip List.
The value to delete.
Searches for a value in the Skip List.
The value to search for.
True if the value is found, false otherwise.
Inserts a value into the Skip List.
The value to insert.
Retrieves the maximum value in the Skip List.
The maximum value or null if the list is empty.
Retrieves the minimum value in the Skip List.
The minimum value or null if the list is empty.
Class representing a Skip List data structure.