Table of Contents
Trong các bài viết trước, tôi đã giới thiệu với các bạn HashSet, LinkedHashSet và TreeSet. Trong bài này, tôi sẽ so sánh sự giống nhau, khác nhau của 3 collection này.
1. Giống nhau của HashSet, LinkedHashSet và TreeSet
- Cả ba không cho phép các phần tử trùng lặp.
- Cả ba không được đồng bộ (non-synchronized).
- Cả ba đều cài đặt interface Cloneable và Serializable.
- Cả ba đều là fail-fast. Bạn sẽ nhận được ConcurrentModificationException nếu chúng được sửa đổi sau khi tạo đối tượng Iterator.
Ví dụ:
package com.maixuanviet.collection.set.linkedhashset; public class Student { private int id; private String name; public Student(int id, String name) { this.id = id; this.name = name; } @Override public String toString() { return "Student [id=" + id + ", name=" + name + "]"; } }
package com.maixuanviet.collection.set.linkedhashset; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.Set; public class LinkedHashSetExample3 { public static void main(String[] args) { // Create list Set<Student> students = new LinkedHashSet<>(); // Add element to list Student student1 = new Student(1, "myname1"); Student student2 = new Student(2, "myname2"); Student student3 = new Student(3, "myname3"); students.add(student1); students.add(student2); students.add(student3); // Show list student Iterator<Student> it = students.iterator(); students.remove(student2); // You will get ConcurrentModificationException // if they are modified after the creation of Iterator object. while (it.hasNext()) { Student s = (Student) it.next(); System.out.println(s); } } }
Thực thi chương trình trên, bạn sẽ nhận được lỗi như sau:
Exception in thread "main" java.util.ConcurrentModificationException at java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:719) at java.util.LinkedHashMap$LinkedKeyIterator.next(LinkedHashMap.java:742) at com.maixuanviet.collection.set.linkedhashset.LinkedHashSetExample3.main(LinkedHashSetExample3.java:24)
2. Khác nhau của HashSet, LinkedHashSet và TreeSet
HashSet | LinkedHashSet | TreeSet | |
Cách thức làm việc? | HashSet sử dụng HashMap nội bộ để lưu trữ các phần tử. | LinkedHashSet sử dụng LinkedHashMap nội bộ để lưu trữ các phần tử. | TreeSet sử dụng TreeMap nội bộ để lưu trữ các phần tử. |
Thứ tự của các phần tử (Order Of Elements) | HashSet không duy trì bất kỳ thứ tự các phần tử được thêm vào. | LinkedHashSet duy trì thứ tự chèn của các phần tử. Các phần tử được lưu trữ đúng như thứ tự chúng được chèn vào. | TreeSet duy trì thứ tự các phần tử theo bộ so sánh được cung cấp (Comparator). Nếu không có bộ so sánh được cung cấp, các phần tử sẽ được đặt theo thứ tự tăng dần tự nhiên của chúng. |
Hiệu suất (Performance) | HashSet cho hiệu suất tốt hơn so với LinkedHashSet và TreeSet. | Hiệu suất của LinkedHashSet nằm giữa HashSet và TreeSet. Hiệu suất của nó hầu như tương tự như HashSet. Nhưng hơi chậm hơn vì nó cũng duy trì LinkedList nội bộ để duy trì trình tự chèn các phần tử. | TreeSet cho hiệu suất thấp hơn HashSet và LinkedHashSet vì nó phải sắp xếp các phần tử sau mỗi lần chèn và loại bỏ. |
Thao tác thêm (Insertion), xóa (Removal) và truy xuất (Retrieval) phần tử | HashSet cho hiệu suất của lệnh O(1) để chèn, loại bỏ và truy xuất phần tử. | LinkedHashSet cũng cho hiệu suất của lệnh O(1) để chèn, loại bỏ và truy xuất phần tử. | TreeSet cho hiệu suất của lệnh O(log (n)) cho các thao tác chèn, loại bỏ và truy xuất phần tử. |
So sánh các phần tử | HashSet sử dụng các phương thức equals() và hashCode() để so sánh các phần tử và do đó loại bỏ các phần tử có thể trùng lặp. | LinkedHashSet cũng sử dụng phương thức equals() và hashCode() để so sánh các phần tử. | TreeSet sử dụng phương pháp compare() hoặc compareTo() để so sánh các phần tử và do đó loại bỏ các phần tử có thể trùng lặp. Nó không sử dụng các phương thức equals () và hashCode () để so sánh các phần tử. |
Phần tử Null | HashSet cho phép tối đa một phần tử null. | LinkedHashSet cũng cho phép tối đa một phần tử null. | TreeSet không cho phép chứa phần tử null. Nếu bạn cố gắng để chèn null thành phần TreeSet, nó ném NullPointerException. |
Sử dụng bộ nhớ | HashSet đòi hỏi ít bộ nhớ hơn LinkedHashSet và TreeSet vì nó chỉ sử dụng HashMap nội bộ để lưu trữ các phần tử của nó. | LinkedHashSet yêu cầu bộ nhớ nhiều hơn HashSet vì nó cũng duy trì LinkedList cùng với HashMap để lưu trữ các phần tử của nó. | TreeSet cũng yêu cầu bộ nhớ nhiều hơn HashSet vì nó cũng duy trì bộ so sánh để sắp xếp các phần tử cùng với TreeMap. |
Khi nào sử dụng? | Sử dụng HashSet nếu bạn muốn danh sách không chứa phần tử trùng và không cần duy trì bất kỳ thứ tự các phần tử được chèn vào. | Sử dụng LinkedHashSet nếu bạn muốn danh sách không chứa phần tử trùng và muốn duy trì thứ tự chèn của các phần tử. | Sử dụng TreeSet nếu bạn muốn danh sách không chứa phần tử trùng và muốn sắp xếp các phần tử theo một số so sánh. |
Related posts:
Các chương trình minh họa sử dụng Cấu trúc điều khiển trong Java
The Order of Tests in JUnit
Inheritance and Composition (Is-a vs Has-a relationship) in Java
Java Program to Implement Queue
Java Program to Implement Gabow Algorithm
Hướng dẫn Java Design Pattern – Facade
Java 8 – Powerful Comparison with Lambdas
Java Program to Search Number Using Divide and Conquer with the Aid of Fibonacci Numbers
Get and Post Lists of Objects with RestTemplate
Java Program to Check Whether Graph is DAG
Spring Boot - Exception Handling
The DAO with JPA and Spring
Java Program to subtract two large numbers using Linked Lists
Assertions in JUnit 4 and JUnit 5
Template Engines for Spring
Simple Single Sign-On with Spring Security OAuth2
New Features in Java 11
Java Program to Find Nearest Neighbor for Dynamic Data Set
Overview of Spring Boot Dev Tools
REST Web service: Upload và Download file với Jersey 2.x
The Thread.join() Method in Java
Java Program to Implement the RSA Algorithm
Hướng dẫn Java Design Pattern – Memento
Spring Boot - OAuth2 with JWT
Hamcrest Collections Cookbook
Jackson – Marshall String to JsonNode
Java Program to Implement DelayQueue API
Java Program to Compare Binary and Sequential Search
Guide to java.util.concurrent.BlockingQueue
Java Program to Implement a Binary Search Algorithm for a Specific Search Sequence
Java Program to Implement AttributeList API
Tìm hiểu về Web Service