码迷,mamicode.com
首页 > 其他好文 > 详细

382. Linked List Random Node

时间:2016-08-21 06:26:23      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:

     /*
      * 382. Linked List Random Node
      * 2016-8-20 by Mingyang
      * 直接进行长度计算就好了,再根据随机数,便利到指定的位置找到结果
      */
     class Solution {
            int len = 0;
            ListNode head;
            /** @param head The linked list‘s head. Note that the head is guanranteed to be not null, so it contains at least one node. */
            public Solution(ListNode head) {
                this.head = head;
                ListNode cur = head;
                while(cur!=null){
                    len++;
                    cur = cur.next;
                }
            }
            
            /** Returns a random node‘s value. */
            public int getRandom() {
                int r = (int)(Math.random() * len);
                ListNode cur = head;
                while(r > 0){
                    cur = cur.next;
                    r--;
                }
                return cur.val;
            }
        }

 

382. Linked List Random Node

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5792053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!