Why is processing a sorted array faster than processing an unsorted array in Java?
Valerie M.
—Why is processing a sorted array faster than processing an unsorted array in Java?
Typically, when processing arrays (or broadly, data structures), four key actions are performed. These include:
Accessing an element by its index or inserting or deleting elements have the same time complexity, regardless of whether an array is sorted or unsorted.
Processing a sorted array is only faster than processing an unsorted array if you’re searching for an element in the array.
Let’s take a look at how searching affects performance on sorted and unsorted arrays.
Searching a sorted array allows you to make assumptions about where in the array the search item is meant to be. This means that you can apply algorithms that divide the array based on where that item is in the array. For example, if you’re looking for a word in a dictionary, which is usually sorted in alphabetic order.
Consider the following code example:
import java.util.Arrays; import java.util.Objects; public class MyClass { public static void main(String[] args) { String[] arr = {"Adrian", "Bella", "Charlotte", "Daniel", "Emma", "Hanna", "Isabella", "Jayden", "Kaylee", "Luke", "Mia", "Nora", "Olivia", "Paisley", "Riley", "Thomas", "Wyatt", "Xander", "Zoe"}; String elem = "Luke"; // 9 int offset = 0; int bS = binarySearch(arr, elem, offset); System.out.println("Index of search item = " + bS); } public static int binarySearch(String[] array, String element, int offset) { // split array in half int half = array.length / 2; String current = array[half]; if (Objects.equals(current, element)) { return offset + half; } else if (element.compareTo(current) > 0) { String[] right = Arrays.copyOfRange(array, half, array.length); return binarySearch(right, element, offset + half); } else { String[] left = Arrays.copyOfRange(array, 0, half); return binarySearch(left, element, offset); } } }
The binarySearch
function is a binary search algorithm that uses a recursive method to return the index of an element in a sorted array.
The time complexity of a binary search is known to be O(log(n)). You can check out this article to see how the time complexity equation is determined for recursion.
If you were to plot the logarithmic graph for this search function, it would depict how the running time reduces at a fast rate given increasing sizes of the array which is incredible especially for very large input sizes.
Searching an unsorted array means that the algorithm would have to visit every element in the array in order to find the element we’re searching for. The best-case scenario would be if the search item is the first element in the array, which would have a time complexity of O(1) however, this is not always the case.
If the search item is towards the end of the array, the running time would take a lot longer, especially as the input grows. Another example would be if we want to print every single element in the unsorted array.
Consider the code example below:
for (int i = 0; i < arr.length; i++) { System.out.print(arr[i]) }
To print every element in an array of size n
, every element would have to be visited. The time complexity would be O(n).
If you were to plot the input size n
against the number of operations it takes to print every element, a linear function graph is produced. This means that the program would take longer as the size of the input grows.
Therefore, faster processing times are seen for sorted arrays compared to unsorted arrays.
Tasty treats for web developers brought to you by Sentry. Get tips and tricks from Wes Bos and Scott Tolinski.
SEE EPISODESConsidered “not bad” by 4 million developers and more than 100,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.
Here’s a quick look at how Sentry handles your personal information (PII).
×We collect PII about people browsing our website, users of the Sentry service, prospective customers, and people who otherwise interact with us.
What if my PII is included in data sent to Sentry by a Sentry customer (e.g., someone using Sentry to monitor their app)? In this case you have to contact the Sentry customer (e.g., the maker of the app). We do not control the data that is sent to us through the Sentry service for the purposes of application monitoring.
Am I included?We may disclose your PII to the following type of recipients:
You may have the following rights related to your PII:
If you have any questions or concerns about your privacy at Sentry, please email us at compliance@sentry.io.
If you are a California resident, see our Supplemental notice.