The differences between basic Java collection classes such as ArrayList, LinkedList, HashMap, and HashTable
Blog from: http://blog.csdn.net/liuxian13183, please indicate the source when reprinting! All Rights Reserved ! ArrayList is a dynamic array with subscripts LinkedList is a doubly linked list, with one pointer pointing to the next one Same points: they both inherit from Collections class and store dynamic data. Differences: The latter has pointers. To add a piece of data, you only need to disconnect one connection and connect the new data respectively Delete a piece of data. The difference is that if the data is in the middle of the array, the latter only needs to find the data, disconnect a connection, and connect the data on both sides; The former requires shifting all subsequent data Modification, for the latter, means deletion + addition; while the latter requires shifting. Search, the former is convenient to search through subscripts, while the latter requires a pointer to point to the next pointer to find data, which is slower. Vector is implemented using an array. In fact, it is the same as ArrayList. The only difference lies in the implementation of synchronization, that is, different threads can share the same data. But it will not lock traversals such as iterator, only common operations such as…

Comparison and summary of ArrayList, Vector, LinkedList, HashMap, HashTable, and HashSet in Java
1. The parent class of all collections is the Collection interface 2.Set List Map difference A In the Set, the order of elements cannot be added, so the elements in the Set cannot be repeated B In the List, there is an index Number,is similar to an array,the elements in it can be repeated,the order of addition can be remembered C In Map:each item has a key value Pair composition (key, value) 3.iteratorInterface(Iterator,Traverser): This interface is also Java Members of the collection framework,This interface is mainly used for traversal(iterative access)CollectionElements MainlyUse three methods: A boolean hasNext():Returns true if the iterated collection elements have not been traversed yet, B Object next():returns the next element in the collection element,Cursor. The element returned by the next method. 4. Differences in the use of Vector and ArrayList – All in the Vector class The methods are all thread synchronized – it will be safe for multiple…
Detailed explanation of javaArrayList, LinkedList, HashSet, HashMap, Hashtable, Collection, and Collections
1.ArrayList ArrayList is the implementation class of the List interface – a variable-sized array – the capacity will automatically expand as the number of elements increases – ;The default initial capacity value is 10,You can also specify the initial capacity yourself The data structure used:array(Linear table:array, linked list, Queue, stackNonlinear table:Binary tree, heap, graph, etc.) Advantages of ArrayList:Fast query speedDisadvantages of ArrayList : Adding and deleting elements is slow The reason for fast query speed: The bottom layer of ArrayList is implemented by array ,Query based on subscript& #xff0c; No need to compare. The query method is “first address” Number of bytes ,So very fast; The reason for slow addition and deletion: Addition and deletion will bring about the movement of elements,Increasing data will Moving backward ,Deleting data will move forward,So it affects efficiency Applicable scenarios: If the application has more random access to data, use ArrayList Better 2. LinkedList LinkedList is also an implementation class of the List interface. It has similar functions to ArrayList, but LinkedList has several new functions, such as addFirst() , addLast(), getFirst(), getLast(), etc. Data structure : Two-way linked list Linked storage , is not stored continuously in memory& #xff0c; Each element storage includes…