O (1), как вы бы обнаружили, если бы вы смотрели на исходный код ...
Из LinkedList:
private transient int size = 0;
...
/**
* Returns the number of elements in this list.
*
* @return the number of elements in this list
*/
public int size() {
return size;
}