


What are the differences between commonly used implementation classes of collections?
#1. What is a collection
Collection is the embodiment of object-oriented reusability , Generally, we refer to research objects as elements; the totality of some elements is called a set, also referred to as a set.
2. Characteristics of set elements
(1) Deterministic: Let A be a given set , x is a specific object, then it is either an element of A, or it is not an element of A. One and only one of the two situations must be true. (2) Mutuality: An element in a given set means that it belongs to this Different individuals (objects) of a set, therefore, the same element should not appear repeatedly in the same set. (3) Disorder: Generally, the order between elements is not considered, but when expressing special sets such as sequences, Usually written in the customary order of the number axis from small to large
collection collection implementation class
ArrayList Implementation method: Array implementation Version: 1.2 Time: Released in December 1998 Lightweight (fast running) Thread unsafe (commonly used)
Vector Implementation method: Array implementation Version: 1.0 Time: Released in May 1995 Heavyweight (slow running) Thread safety
LinkedList implementation method: Linked list implementation
Array: continuous space, fast query speed, direct access to subscripts, slow addition and deletion, addition and deletion need to move the subsequent data backward or forward
linked list: Node association Query speed is slow Use the previous one to find the next Add and delete Quick linked list increase Directly point the previous one to the new data and the next one also points to the new data
Vector implementation Class Stack Stack LIFO (Last In First Out) query less addition and deletion more
3. How to implement a stack in java
a. Array b. LinkedList c. Stack class
Use LinkedList, why not use Stack to implement the class? Because Stack inherits the wrong Inherited from Vector, Vector provides the add method, but the stack can only pop and push and cannot be inserted from the middle, making the stack unsafe. Stack inherits Vector, so Stack has many methods that should not exist.
1 //用java创建一个栈 2 public class AStack { 3 public static void main(String[] args) { 4 Stacks s = new Stacks(); 5 s.push("lin"); 6 s.push("hello"); 7 s.push("hou"); 8 s.push(123); 9 System.out.println(s.pop());10 System.out.println(s.pop());11 System.out.println(s.pop());12 System.out.println(s.pop());13 }14 }15 class Stacks{16 //变继承复用为主核复用17 private LinkedList list = new LinkedList();18 public void push(Object o){19 list.addFirst(o);20 }21 public Object pop(){22 Object o = list.removeFirst();23 return o;24 }25 }
Map collection
Element: key-value pair (key-value pair)
Features: The key content is unique and the corresponding value is repeatable and unordered
Usage: Find value through key
##Example: Dictionary word - explanation Website username - password
Main method:
1.put (Object k, Object v): Put the key-value pair k-v into the Map. If k already exists, the new v will replace the old v
2.get(Object k): Returns the v corresponding to k in the Map
3.remove(Objeck k): Delete the key value where k is located Right
4.containsKey(Object k): Determine whether K exists in the Map
5.containsValue(Object v): Determine whether v exists in the Map
Map 3 types of traversal
1. Value traversal
1 Collection c = map.values();2 Iterator i = c.iterator();3 while(i.hasNext()){4 System.out.println(i.next());5 }
##2. Key traversal
1 Set s = map.keySet();2 Iterator i = s.iterator();3 while(i.hasNext()){4 Object k = i.next();5 Object v = map.get(k);6 System.out.println(k+"+++"+v);7 }
3. Key value traversal
Map.Entry object, encapsulation Got a key and a value
1 Set set = map.entrySet();2 Iterator i = set.iterator();3 while(i.hasNext()){4 Map.Entry me = (Map.Entry)i.next();5 System.out.println(me.getKey());6 System.out.println(me.getValue());7 }
Implementation class:
1.HashMap: 1.2 Allows using null as key or value
2.Hashtable: 1.0 does not allow null as key or value
3.Properties: Hashtable subclasses both key and value String is generally used for reading configuration files
##4.TreeMap: Implements SortcdMap (sub-interface of Map) to automatically sort keys
---------------------------------------- -------------------------------------------------- -------------------------------------------------- ------ If the above is wrong, I welcome experts to point out the errors. If you want to communicate, please send an email to my email address 1206835721@qq.com
The above is the detailed content of What are the differences between commonly used implementation classes of collections?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



C language functions are the basis for code modularization and program building. They consist of declarations (function headers) and definitions (function bodies). C language uses values to pass parameters by default, but external variables can also be modified using address pass. Functions can have or have no return value, and the return value type must be consistent with the declaration. Function naming should be clear and easy to understand, using camel or underscore nomenclature. Follow the single responsibility principle and keep the function simplicity to improve maintainability and readability.

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

C language functions are reusable code blocks. They receive input, perform operations, and return results, which modularly improves reusability and reduces complexity. The internal mechanism of the function includes parameter passing, function execution, and return values. The entire process involves optimization such as function inline. A good function is written following the principle of single responsibility, small number of parameters, naming specifications, and error handling. Pointers combined with functions can achieve more powerful functions, such as modifying external variable values. Function pointers pass functions as parameters or store addresses, and are used to implement dynamic calls to functions. Understanding function features and techniques is the key to writing efficient, maintainable, and easy to understand C programs.

Export password-protected PDF in Photoshop: Open the image file. Click "File"> "Export"> "Export as PDF". Set the "Security" option and enter the same password twice. Click "Export" to generate a PDF file.

The necessity of registering VueRouter in the index.js file under the router folder When developing Vue applications, you often encounter problems with routing configuration. Special...

Although C and C# have similarities, they are completely different: C is a process-oriented, manual memory management, and platform-dependent language used for system programming; C# is an object-oriented, garbage collection, and platform-independent language used for desktop, web application and game development.

Detailed explanation of XPath search method under DOM nodes In JavaScript, we often need to find specific nodes from the DOM tree based on XPath expressions. If you need to...

In-depth discussion of the differences in console.log output in this article will analyze the reasons why the output results of console.log function in a piece of code are different. Code snippets involve URL parameter resolution...
