题目:
题解:
type Solution struct {
head *ListNode
}
func Constructor(head *ListNode) Solution {
return Solution{head}
}
func (s *Solution) GetRandom() (ans int) {
for node, i := s.head, 1; node != nil; node = node.Next {
if rand.Intn(i) == 0 { // 1/i 的概率选中(替换为答案)
ans = node.Val
}
i++
}
return
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » Golang | Leetcode Golang题解之第382题链表随机节点
发表评论 取消回复