Variable LinkedList.length

Number of elements in the list.

struct LinkedList
{
  // ...
  size_t length = 0;
  // ...
}