[leetcode]382. Linked List Random Node

[leetcode]382. Linked List Random Node


Analysis

等国庆!!!!!—— [嘻嘻~]

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.
Follow up:
What if the linked list is extremely large and its length is unknown to you? Could you solve this efficiently without using extra space?
考虑到链表可能会很长,所以应该用水塘抽样的方法解决,因为只需要随机选一个数,相当于一个容量为1的水塘。关于水塘抽样可以参考:https://blog.csdn.net/My_Jobs/article/details/48372399

Implement

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    /** @param head The linked list's head.
        Note that the head is guaranteed to be not null, so it contains at least one node. */
    Solution(ListNode* head) {
        ini_head = head;
    }
    
    /** Returns a random node's value. */
    int getRandom() {
        int res = ini_head->val;
        ListNode* tmp = ini_head;
        int i=1;
        while(tmp){
            if(rand() % i == 0)
                res = tmp->val;
            tmp = tmp->next;
            i++;
        }
        return res;
    }
private:
    ListNode* ini_head;
};

/**
 * Your Solution object will be instantiated and called as such:
 * Solution obj = new Solution(head);
 * int param_1 = obj.getRandom();
 */

你可能感兴趣的:(LeetCode,Medium,intersting)