Medium
,Linked List
,Math
Given a singly linked list, return a random node's value from the linked list. Each node must have the same probability of being chosen.
Implement the Solution
class:
Solution(ListNode head)
Initializes the object with the head of the singly-linked list head
.int getRandom()
Chooses a node randomly from the list and returns its value. All the nodes of the list should be equally likely to be chosen.Example 1:
Constraints:
Node.val
<= 104getRandom
.Follow up:
第一種: 先遍歷一次得整體數量n再以此為區間隨機取得數字
第二種: 對於無法先遍歷得整體數量n如streaming data需用Reservoir sampling
Time:
Extra Space:
XD March 10, 2023
Follow up: