forked from mickey0524/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1019.Next-Greater-Node-In-Linked-List.go
68 lines (58 loc) · 1.09 KB
/
1019.Next-Greater-Node-In-Linked-List.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// https://leetcode.com/problems/next-greater-node-in-linked-list/
//
// algorithms
// Medium (52.55%)
// Total Accepted: 2,601
// Total Submissions: 4,950
// beats 100.0% of golang submissions
package leetcode
/**
* Definition for singly-linked list.
* type ListNode struct {
* Val int
* Next *ListNode
* }
*/
type stackItem struct {
val int
idx int
}
func nextLargerNodes(head *ListNode) []int {
if head == nil {
return []int{}
}
if head.Next == nil {
return []int{0}
}
tmp := head
length := 0
for tmp != nil {
length++
tmp = tmp.Next
}
res := make([]int, length)
var stack []stackItem
curIdx := 0
for head != nil {
stackLen := len(stack)
if stackLen == 0 || head.Val <= stack[stackLen-1].val {
stack = append(stack, stackItem{
val: head.Val,
idx: curIdx,
})
} else {
for stackLen > 0 && head.Val > stack[stackLen-1].val {
res[stack[stackLen-1].idx] = head.Val
stackLen--
stack = stack[:stackLen]
}
stack = append(stack, stackItem{
val: head.Val,
idx: curIdx,
})
}
curIdx++
head = head.Next
}
return res
}