Operations on an SEList
Learn different operations supported by an SEList (space-efficient linked list).
We'll cover the following
Finding elements
The first challenge we face with an SEList
is finding the list item with a given index i
. Note that the location of an element consists of two parts:
- The node
u
that contains the block that contains the element with indexi
; and - The index
j
of the element within its block
Create a free account to access the full course.
By signing up, you agree to Educative's Terms of Service and Privacy Policy