-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0382-linked-list-random-node.js
46 lines (42 loc) · 1.11 KB
/
0382-linked-list-random-node.js
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
/**
* 382. Linked List Random Node
* https://leetcode.com/problems/linked-list-random-node/
* Difficulty: Medium
*
* 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.
*/
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
*/
var Solution = function(head) {
this.head = head;
};
/**
* @return {number}
*/
Solution.prototype.getRandom = function() {
let current = this.head;
let result = current.val;
let count = 1;
while (current.next) {
current = current.next;
count++;
if (Math.random() < 1 / count) {
result = current.val;
}
}
return result;
};