Linked Lists, or Lists
Can implement in an array, which has expensive insert and delete operations, or through pointers and structs, which need double the space.Implementation In C - Array
required max size, wastes considerable spaceconstant write operation if in space
Implementation