博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode算法:Next Greater Element I
阅读量:5366 次
发布时间:2019-06-15

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

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. Example 2: Input: nums1 = [2,4], nums2 = [1,2,3,4]. Output: [3,-1] Explanation:     For number 2 in the first array, the next greater number for it in the second array is 3.     For number 4 in the first array, there is no next greater number for it in the second array, so output -1. Note: All elements in nums1 and nums2 are unique. The length of both nums1 and nums2 would not exceed 1000. 这题描述的需求是: 给我们两个数组 比如  nums1 = [1,2,3]  nums2 = [1,2,3,4,5,6] 需要我们求出的结果也是一个数组,这个数组,里面的数值一次是:   对num1里面每一个数字x ,找到在num2里x出现的右侧最近的一个比x大的数字。   如过nums里x的右侧没有比x大的 就用-1代表这个数字的结果 比如:
Input: nums1 = [4,1,2], nums2 = [1,3,4,2]. Output: [-1,3,-1] 4在num2中的右侧没有比4大的 所以结果是-1 1在num2中 右侧最近的比他大的是3 2在num2中没有右侧数字了 结果是-1 我的python代码:
1 class Solution(object): 2     def nextGreaterElement(self, findNums, nums): 3         """ 4         :type findNums: List[int] 5         :type nums: List[int] 6         :rtype: List[int] 7         """ 8         res = [] 9         for i in findNums:10             index = nums.index(i)11             index2 = -112             for j in range(index + 1, len(nums)):13                 if nums[j] > i:14                     index2 = j15                     break16             if index2 == -1:17                 res.append(-1)18             else :19                 res.append( nums[index2])20         return res21 22 23 24 25 if __name__ == '__main__':26     s = Solution()27     res = s.nextGreaterElement([4,1,2], [1,3,4,2] )28     print(res)

 

 
 

转载于:https://www.cnblogs.com/Lin-Yi/p/7501804.html

你可能感兴趣的文章
菜单小谈
查看>>
Python第三方模块tesserocr安装
查看>>
【Gamma】Scrum Meeting 7
查看>>
Android SQlite详解
查看>>
BBS-项目流程分析-表的创建
查看>>
操作系统简介
查看>>
创建一个dynamics CRM workflow (五) - Deploy Custom Workflows
查看>>
ThinkPHP - Widget 工具
查看>>
前端图片上传预览
查看>>
(ZZ)ACM之歌
查看>>
Mecanim高级主题:Mecanim Blend Tree应用、Blend Tree 选项、复合Blend Tree
查看>>
分页/pagination
查看>>
HOJ Funfair
查看>>
web前端使用localstorage、sessionstorage、cookie增删获方法
查看>>
不要轻视行动的力量
查看>>
Python中re的match、search、findall、finditer区别
查看>>
网页制作中的超链接怎么做
查看>>
PHP类和对象之定义类的方法
查看>>
索引、视图、事务
查看>>
201671030106 词频统计软件项目报告
查看>>