why LinkedList doesn't have initialCapacity in java?

前端 未结 6 1011
不知归路
不知归路 2021-02-07 00:54

I wonder why LinkedList doesn\'t have initialCapacity.

I know good when to use ArrayList and when LinkedList.

相关标签:
6条回答
  • 2021-02-07 01:35

    Why would you need a capacity on a LinkedList? A LinkedList does not work with fixed sized arrays. Every LinkedListElement has a pointer (a link!) to the next Element in the list. Which Because of that it is possible to add an element to a linked list in constant time. But it is costly to have random access to the elements in the List. You need to go through all the Elements in the list until you reach your destination.

    0 讨论(0)
  • 2021-02-07 01:41

    Why would LinkedList have an initial capacity?

    ArrayList is backed up by an array, so the initial capacity is the initial size of the array. LinkedList has no need of that.

    0 讨论(0)
  • 2021-02-07 01:46

    When you declare an array you have to know its size because pointers need to be created in memory. A linked list does not need this because there is no need for pointers to memory before any object is added to the list.

    A linked list is defined recursively as: an empty list en element that points to the empty list

    therefore whenever you add an element, you allocate memory (or rather in Java the compiler does this) when you create the element, and then when you add it to the list it now points to the list (or the last element in the list points to it).

    So you don't need to declare initial size of linked list because a linked list always starts with the empty list, and when an element is added it points to the list.

    0 讨论(0)
  • 2021-02-07 01:47

    LinkedList by nature does not have "capacity", since it does not allocate memory to the items before the items are added to the list. Each item in a LinkedList holds a pointer to the next in the list.

    http://www.stoimen.com/blog/wp-content/uploads/2012/06/0.-Arrays-vs.-linked-list.png

    There would be no point in allocating memory to the list beforehand, since LinkedList does not have capacity.

    0 讨论(0)
  • 2021-02-07 01:50

    Its model is not based on an array but rather a true linked list, and so there is no need and further it would not make sense. It doesn't make much sense to have empty links like you have empty array items.

    0 讨论(0)
  • 2021-02-07 01:51

    Linkedlist does not need an initial value. Thats is the primary difference between array and linked list.

    array will end somewhere. But linkedlist not. Linked list does not work on boundary values.

    0 讨论(0)
提交回复
热议问题