当前位置:网站首页>Compare whether two lists are equal
Compare whether two lists are equal
2022-07-05 00:50:00 【Sunze·】
1、 Use it directly equals() Compare
as everyone knows , When two lists have exactly the same elements and have exactly the same order , They are equal . therefore , If our business requires two list In the same order , have access to equals() Method to check the equality :
@Test
public void equalityCheckOfTwoLists() {
List<Integer> list1 = Arrays.asList(1, 2, 3);
List<Integer> list2 = Arrays.asList(1, 2, 3);
List<Integer> list3 = Arrays.asList(2, 1, 3);
assertTrue(list1.equals(list2));
assertFalse(list1.equals(list3));
}
Even if list1 And projects list3 Contains the same elements {1,2,3}, But the order of elements is different , therefore list1 and list3 It's still not equal .
Be careful :
Some businesses require that the order of elements need not be consistent What we need to do is to check whether the two lists contain the same elements , Regardless of their order in the list , So how to achieve it ?
2、 take list Compare after sorting
Processing logic mainly includes :
(1) If two list All for null, Then return to true
(2) If one list Not empty , The other one points to null value and returns false
(3) Two list Of size() Different , return false.
public <T extends Comparable<T>> boolean isEquals(List<T> list1, List<T> list2){
if (list1 == null && list2 == null) {
return true;
}
//Only one of them is null
else if(list1 == null || list2 == null) {
return false;
}
else if(list1.size() != list2.size()) {
return false;
}
//copying to avoid rearranging original lists
list1 = new ArrayList<T>(list1);
list2 = new ArrayList<T>(list2);
Collections.sort(list1);
Collections.sort(list2);
return list1.equals(list2);
}
Please note that :
Here we create two copies of the list to ensure that the elements in the original list remain unchanged .
3、 Use Sets / contains() Compare list
If the list has no repeating elements , We can use list Created in TreeSet, And then use equals() Compare them :
ublic <T extends Comparable<T>> boolean isEquals(List<T> list1, List<T> list2){
if (list1 == null && list2 == null) {
return true;
}
//Only one of them is null
else if(list1 == null || list2 == null) {
return false;
}
else if(list1.size() != list2.size()) {
return false;
}
Set<T> set1 = new TreeSet<>(list1);
Set<T> set2 = new TreeSet<>(list2);
return set1.equals(set2);
}
We can use it more simply contains() Compare , No need to create Sets:
return list1.containsAll(list2) && list2.containsAll(list1);
But pay attention here If we list Duplicate element , Use contains() perhaps Sets There will be problems in comparison . Look at the following case and you will know what happened .
List<Integer> list1 = Arrays.asList(1, 2, 3, 3);
List<Integer> list2 = Arrays.asList(3, 1, 2, 2);
// will return true, but actual value should be false
System.out.println(list1.isEquals(list2));
In the example above ,list1 Contains a 2 And two 3, and list2 Contains two 2 And a 3, We can see two list In fact, they are not equal , But the program will return incorrectly true. So when using this method, make sure list Elements are not repeated .
4、 Use Apache Commons Tool class
CollectionUtils It provides tools and methods for judging the equality of sets isEqualCollection, As long as we ensure that two sets are not empty, we can directly use this method to judge the equality of sets .
List<Integer> list1 = Arrays.asList(1, 2, 3, 3);
List<Integer> list2 = Arrays.asList(3, 1, 3, 2);
System.out.println(CollectionUtils.isEqualCollection(list1, list2)); //true
5、 Conclusion
Today we learned to check Java Whether the two lists in are equal 4 Methods , By default , When two lists have the same elements in the same order , We know they are equal . If we don't care much about the order of elements , Several other methods can be used to compare the equality of lists .
边栏推荐
- Insert sort of sort
- Specification for fs4061a boost 8.4v charging IC chip and fs4061b boost 12.6V charging IC chip datasheet
- ORB(Oriented FAST and Rotated BRIEF)
- SAP ui5 application development tutorial 107 - trial version of SAP ui5 overflow toolbar container control introduction
- Paxos 入门
- 【报错】 “TypeError: Cannot read properties of undefined (reading ‘split‘)“
- 华为百万聘请数据治理专家!背后的千亿市场值得关注
- 4. Scala writes HelloWorld in idea, in-depth analysis of accompanying objects, and association of source packages
- 全网最全正则实战指南,拿走不谢
- [Yocto RM]11 - Features
猜你喜欢
Summer challenge brings you to play harmoniyos multi terminal piano performance
[paper reading] Tun det: a novel network for meridian ultra sound nodule detection
Daily question brushing record (13)
SAP UI5 应用的主-从-从(Master-Detail-Detail)布局模式的实现步骤
Reasons and solutions of redis cache penetration and avalanche
Pycharm professional download and installation tutorial
Arbitrum:二维费用
Applet live + e-commerce, if you want to be a new retail e-commerce, use it!
Relationship between classes and objects
Specification for fs4061a boost 8.4v charging IC chip and fs4061b boost 12.6V charging IC chip datasheet
随机推荐
Enterprise application business scenarios, function addition and modification of C source code
[untitled]
[circuit design] optocoupler use and circuit design summary
Verilog tutorial (11) initial block in Verilog
Complete knapsack problem (template)
程序员SQL数据脚本编码能力弱,BI做不出来怎么办?
Binary conversion problem
初识ROS
The waterfall flow layout demo2 (method 2) used by the uniapp wechat applet (copy and paste can be used without other processing)
Hill sort of sorting
107. SAP UI5 OverflowToolbar 容器控件以及 resize 事件处理的一些细节介绍
【selenium自动化】常用注解
Expose testing outsourcing companies. You may have heard such a voice about outsourcing
Mongodb series learning notes tutorial summary
基本放大电路的学习
Hisilicon 3559 universal platform construction: YUV422 pit stepping record
lambda expressions
const、volatile和restrict的作用和用法总结
Playwright recording
【C】 (written examination questions) pointer and array, pointer