博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组和矩阵(3)——Next Greater Element I
阅读量:5325 次
发布时间:2019-06-14

本文共 1924 字,大约阅读时间需要 6 分钟。

You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nums1's elements in the corresponding places of nums2.

The Next Greater Number of a number x in nums1 is the first greater number to its right in nums2. If it does not exist, output -1 for this number.

Example 1:

Input: nums1 = [4,1,2], nums2 = [1,3,4,2].Output: [-1,3,-1]Explanation:    For number 4 in the first array, you cannot find the next greater number for it in the second array, so output -1.    For number 1 in the first array, the next greater number for it in the second array is 3.    For number 2 in the first array, there is no next greater number for it in the second array, so output -1.

1.暴力

1 public class Solution { 2     public int[] nextGreaterElement(int[] findNums, int[] nums) { 3         int len = findNums.length; 4         int[] res = new int[len]; 5         if(len > nums.length) { 6             return res; 7         } 8         for(int i=0; i
findNums[i]) {17 res[i] = nums[j];18 k = true;19 break;20 }21 }22 if(k == false) {23 res[i] = -1;24 }25 }26 return res;27 }28 }

2.集合

1     public int[] nextGreaterElement(int[] findNums, int[] nums) { 2         Map
map = new HashMap<>(); // map from x to next greater element of x 3 Stack
stack = new Stack<>(); 4 for (int num : nums) { 5 while (!stack.isEmpty() && stack.peek() < num) 6 map.put(stack.pop(), num); 7 stack.push(num); 8 } 9 for (int i = 0; i < findNums.length; i++)10 findNums[i] = map.getOrDefault(findNums[i], -1);11 return findNums;12 }

 

转载于:https://www.cnblogs.com/-1307/p/6930606.html

你可能感兴趣的文章
用CADisplayLink制作一个仿余额宝数字跳动动画
查看>>
React Native设置图片全屏背景显示
查看>>
第02章-装配Bean
查看>>
《PHP扩展学习系列》系列分享专栏
查看>>
后缀运算符与前缀运算符的区别
查看>>
spring boot 系列学习记录
查看>>
Python break 语句
查看>>
邁向IT專家成功之路的三十則鐵律 鐵律二十四:IT人歲月增長之道-智慧
查看>>
解决VS2010警告unsuccessfulbuild”,因为已指定“AlwaysCreate”
查看>>
[ext]form.submit()相关说明
查看>>
request.getRequestDispatcher("").forward()中文乱码
查看>>
SQLite 批量insert - 如何加速SQLite的插入操作
查看>>
js之事件冒泡和事件捕获(四)
查看>>
配置nginx1.8支持thinkPHP3.2 pathinfo模式
查看>>
Spring模块
查看>>
P1478 陶陶摘苹果(升级版)洛谷 (c++)(贪心、排序)
查看>>
iis配置问题
查看>>
hdu 5417 Victor and Machine
查看>>
人物-李彦宏:李彦宏
查看>>
.NETFramework:ConfigurationManager
查看>>