[prev] [index] [next]

List Operations

A typical list datatype would involve operations:
  • make a new empty list
  • print all list elements
  • insert a new value into the list
    • at the head / at the tail / maintaining sorted order
  • delete a value from the list
    • from the head / from the tail / delete specified value
  • search for a node with a specified value
  • free all list elements