Converting Between an Array and a Set in Java 1. Overview In this short article we’re going to look at converting between an array and a Set – first using plain java, then Guava and the Commons Collections library from Apache. This article is part of the “Java – Back… Continue Reading convert-array-to-set-and-set-to-array

Time Complexity of Java Collections 1. Overview In this tutorial, we’ll talk about the performance of different collections from the Java Collection API. When we talk about collections, we usually think about the List, Map, and Set data structures and their common implementations. First of all, we’ll look at Big-O complexity insights… Continue Reading java-collections-complexity