3423. Maximum Difference Between Adjacent Elements in a Circular Array
Description
Given a circular array nums
, find the maximum absolute difference between adjacent elements.
Note: In a circular array, the first and last elements are adjacent.
Example 1:
Input: nums = [1,2,4]
Output: 3
Explanation:
Because nums
is circular, nums[0]
and nums[2]
are adjacent. They have the maximum absolute difference of |4 - 1| = 3
.
Example 2:
Input: nums = [-5,-10,-5]
Output: 5
Explanation:
The adjacent elements nums[0]
and nums[1]
have the maximum absolute difference of |-5 - (-10)| = 5
.
Constraints:
2 <= nums.length <= 100
-100 <= nums[i] <= 100
Solutions
Solution 1: Simulation
We traverse the array $\textit{nums}$, calculate the absolute difference between adjacent elements, and maintain the maximum absolute difference. Finally, we compare it with the absolute difference between the first and last elements and take the maximum value.
The time complexity is $O(n)$, where $n$ is the length of the array $\textit{nums}$. The space complexity is $O(1)$.
1 2 3 |
|
1 2 3 4 5 6 7 8 9 10 |
|
1 2 3 4 5 6 7 8 9 10 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
1 2 3 4 5 6 7 8 |
|