leetcode 1019. 链表中的下一个更大节点

给出一个以头节点 head 作为第一个节点的链表。链表中的节点分别编号为:node_1, node_2, node_3, ... 。

每个节点都可能有下一个更大值(next larger value):对于 node_i,如果其 next_larger(node_i) 是 node_j.val,那么就有 j > i 且  node_j.val > node_i.val,而 j 是可能的选项中最小的那个。如果不存在这样的 j,那么下一个更大值为 0 。

返回整数答案数组 answer,其中 answer[i] = next_larger(node_{i+1}) 。

注意:在下面的示例中,诸如 [2,1,5] 这样的输入(不是输出)是链表的序列化表示,其头节点的值为 2,第二个节点值为 1,第三个节点值为 5 。

 

示例 1:

输入:[2,1,5]
输出:[5,5,0]
示例 2:

输入:[2,7,4,3,5]
输出:[7,0,5,5,0]
示例 3:

输入:[1,7,5,1,9,2,5,1]
输出:[7,9,9,9,0,5,0,0]
 

提示:

对于链表中的每个节点,1 <= node.val <= 10^9
给定列表的长度在 [0, 10000] 范围内

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/next-greater-node-in-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

辅助单调栈

1:遍历链表,获取链表的长度length。

2:把链表转换为数组arr。

3:创建一个单调栈stack。

3:从后往前遍历数组,若是当前数字大于栈顶元素或者栈为null,则入栈,并且此元素 对应的answer中的值为0

4:若是小于栈顶元素,则弹出栈,直到栈为空或者遇到大于该元素的值,再把此元素入栈。并且次元素对应的answer中的值栈顶元素。

 

    public int[] nextLargerNodes(ListNode head) {
        int length = 0;
        ListNode item = head;
        while (item != null) {
            length++;
            item = item.next;
        }
        int[] arr = new int[length];
        int index = 0;
        while (head != null) {
            arr[index++] = head.val;
            head = head.next;
        }
        Stack<Integer> stack = new Stack<>();
        for (int i = length - 1; i >= 0; i--) {
            int value = arr[i];
            while (!stack.isEmpty() && stack.peek() <= value) {
                stack.pop();
            }
            arr[i] = stack.isEmpty() ? 0 : stack.peek();
            stack.add(value);
        }
        return arr;
    }

posted @ 2021-08-15 19:17  旺仔古李  阅读(94)  评论(0编辑  收藏  举报