Problem Description
Given an unsorted array of integers nums
, return the length of the longest consecutive elements sequence.
Key Insights
- The longest consecutive sequence can be found without sorting the array.
- A hash set is useful for O(1) average time complexity lookups.
- An optimal approach involves checking for each number if it's the start of a sequence.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can use a hash set to store all the elements of the array. Then, we iterate through each number in the array, and for each number, we check if it is the start of a consecutive sequence (i.e., if the number just before it is not in the set). If it is the start, we count how many consecutive numbers exist in the set starting from that number. This approach ensures that each number is processed only once, allowing us to achieve O(n) time complexity.