Sponsored
Sponsored
This approach involves iterating over each element of nums1 and finding the corresponding element in nums2. Once located, search for the next greater element to its right. This straightforward method checks each pair and ensures correctness but may not be optimal for larger arrays.
The time complexity of this brute force approach is O(n * m), where n is the number of elements in nums1, and m is the number of elements in nums2. The space complexity is O(1) apart from the output array.
1import java.util.*;
2
3public class NextGreaterElement {
4 public static int[] nextGreaterElement(int[] nums1, int[] nums2) {
5 int[] result = new int[nums1.length];
6 for (int i = 0; i < nums1.length; i++) {
7 int j = 0;
8 while (j < nums2.length && nums2[j] != nums1[i]) j++;
9 int k = j + 1;
10 while (k < nums2.length && nums2[k] <= nums1[i]) k++;
11 result[i] = (k < nums2.length) ? nums2[k] : -1;
12 }
13 return result;
14 }
15
16 public static void main(String[] args) {
17 int[] nums1 = {4, 1, 2};
18 int[] nums2 = {1, 3, 4, 2};
19 System.out.println(Arrays.toString(nextGreaterElement(nums1, nums2)));
20 }
21}
The Java solution for this problem employs a simple comparison technique where each element from nums1 is found in nums2, and the subsequent greater element is searched. This solution, albeit easy to understand, can be computationally expensive.
This approach utilizes a stack and a hashmap to efficiently solve the problem. As we traverse nums2, we use the stack to store elements for which the next greater element hasn't been found yet. Whenever a greater element is found, it's recorded in the hashmap against the elements in the stack. This technique is optimal and runs in linear time.
The time complexity is O(n + m), approaching linear time with respect to input size and space is approximately O(m) for hashmap tracking.
1
Using both stack and hashmap, this Python solution processes nums2 entirely, updating the hashmap with the next greater elements as soon as they are found. The transformation into nums1 results is rapid due to pre-built mappings.