Change the Data Structure
Another helpful optimization technique is to imagine what would happen if we stored our given data in an alternative data structure.
For example, we may be working on a problem where the data is given to us in the form of an array. However, reimagining that same data stored as a hash table, tree, or other data structure can sometimes reveal clever optimization opportunities.
Our use of a hash table for the magical lookup technique earlier is a specific example of this. And we’re about to see that changing the data structure can be useful for other scenarios as well.
The Anagram Checker
Here’s one example. Let’s say we’re writing a function that determines whether two given strings are anagrams of one another. We encountered ...
Get A Common-Sense Guide to Data Structures and Algorithms in Python, Volume 1 now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.