美文网首页Leetcode
Leetcode 1019. Next Greater Node

Leetcode 1019. Next Greater Node

作者: SnailTyan | 来源:发表于2021-08-20 08:23 被阅读0次

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Next Greater Node In Linked List

2. Solution

解析:Version 1,这个题跟Leetcode 503. Next Greater Element II非常相似,只不过是把数组换成了链表,参考https://blog.csdn.net/Quincuntial/article/details/118733487即可。

  • Version 1
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def nextLargerNodes(self, head: ListNode) -> List[int]:
        result = []
        nums = []
        node = head
        index = 0
        stack = []
        while node:
            while stack and nums[stack[-1]] < node.val:
                result[stack.pop()] = node.val
            nums.append(node.val)
            result.append(0)
            stack.append(index)
            node = node.next
            index += 1
        return result

Reference

  1. https://leetcode.com/problems/next-greater-node-in-linked-list/

相关文章

网友评论

    本文标题:Leetcode 1019. Next Greater Node

    本文链接:https://www.haomeiwen.com/subject/tcuomltx.html