国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Insert Delete GetRandom O(1) & Duplicates allo

2shou / 3274人閱讀

摘要:思路可以實現時間復雜度的和,但是要求也是,只用是不可以的。但是在里面查找的時間復雜度依然是,可以想到用來記錄對應的,這樣查找的時間也是常數。用可以保持順序,但是的時間復雜度是。

380. Insert Delete GetRandom O(1)

Design a data structure that supports all following operations in average O(1) time.

insert(val): Inserts an item val to the set if not already present.

remove(val): Removes an item val from the set if present.

getRandom: Returns a random element from current set of elements. Each element must have the same probability of being returned.

思路

HashSet可以實現O(1)時間復雜度的insert和remove,但是要求getRandom也是O(1),只用HashSet是不可以的。在List里面隨機找一個數的時間是O(1),所以可以用list來記錄加進去的value,這樣insert和getRandom都是O(1)了。remove的操作比較有意思,在一個list里面找到相應的值之后和最后一個位置上的值調換,這個remove就是常數時間了。但是在list里面查找的時間復雜度依然是O(N),可以想到用hashmap來記錄對應的index,這樣查找的時間也是常數。

復雜度

Time: O(1), Space: O(N)

代碼
    Map map;
    List list;
    Random random;
    public RandomizedSet() {
        // hashmap to realize insert, remove in O(1), the value is the index in list
        map = new HashMap();
        // list to realize get random in O(1);
        list = new ArrayList();
        random = new Random();
    }
    
    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    public boolean insert(int val) {
        if(map.containsKey(val)) return false;
        map.put(val, list.size());
        list.add(val);
        return true;
    }
    
    /** Removes a value from the set. Returns true if the set contained the specified element. */
    public boolean remove(int val) {
        // change the val with the last one, then delete last one
        if(!map.containsKey(val)) return false;
        int delete_index = map.get(val);
        int last = list.get(list.size() - 1);
        // change the last element to the delete place
        list.set(delete_index, last);
        // update the index in map
        map.replace(last, delete_index);
        // remove in the list
        list.remove((int) list.size() - 1);
        // remove in the map
        map.remove(val);
        return true;
    }
    
    /** Get a random element from the set. */
    public int getRandom() {
        if(list.size() == 0) return -1;
        return list.get(random.nextInt(list.size()));
    }
381. Insert Delete GetRandom O(1) - Duplicates allowed 思路

允許duplication之后麻煩了許多。現在hashmap里面要存所有的index。在remove的時候復雜度要保持O(1),每次還是要取最后一個值和刪除的值交換,所以需要map里面找到最后一個值,之后刪除最大的index的時間復雜度是O(1),同時把index更新成當前刪除的值的index之后,所有的index還要保持順序。

heap

用heap可以保持順序,但是poll的時間復雜度是O(logN)。

代碼
Map> map;
    List list;
    Random random;
    public RandomizedCollection() {
        map = new HashMap();
        list = new ArrayList();
        random = new Random();
    }
    
    /** Inserts a value to the collection. Returns true if the collection did not already contain the specified element. */
    public boolean insert(int val) {
        if(map.containsKey(val)) {
            map.get(val).add(list.size());
            list.add(val);
            return false;
        }
        else {
            map.put(val, new PriorityQueue<>((a, b) -> b - a));
            map.get(val).add(list.size());
            list.add(val);
            return true;
        }
    }
    
    /** Removes a value from the collection. Returns true if the collection contained the specified element. */
    public boolean remove(int val) {
        if(!map.containsKey(val)) return false;
        int delete_index = map.get(val).peek();
        int last = list.get(list.size() - 1);
        // update
        list.set(delete_index, last);
        map.get(last).poll();
        map.get(last).add(delete_index);
        // delete
        list.remove(list.size() - 1);
        map.get(val).poll();
        if(map.get(val).size() == 0) map.remove(val);
        return true;
    }
    
    /** Get a random element from the collection. */
    public int getRandom() {
        return list.get(random.nextInt(list.size()));
    }
LinkedHashSet

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66477.html

相關文章

  • leetcode380. Insert Delete GetRandom O(1)

    摘要:題目要求設計一個數據結構,使得能夠在的時間復雜度中插入數字,刪除數字,以及隨機獲取一個數字。因此,使用來查詢時不可避免的。如何實現的隨機查詢這個其實就是強調一點,我們需要維持原有的插入順序,從而保證各個元素等概率被隨機。 題目要求 Design a data structure that supports all following operations in average O(1)...

    phoenixsky 評論0 收藏0
  • leetcode381. Insert Delete GetRandom O(1) - Duplic

    摘要:題目要求設計一個數據結構,支持能夠在的時間內完成對數字的插入,刪除和獲取隨機數的操作,允許插入重復的數字,同時要求每個數字被隨機獲取的概率和該數字當前在數據結構中的個數成正比。網上有一些實現采用來解決,這是不合理的。此時的代碼如下 題目要求 Design a data structure that supports all following operations in average...

    h9911 評論0 收藏0
  • 哈希函數與哈希表

    摘要:哈希函數與哈希表一哈希函數哈希函數性質輸入域是無窮的輸出域有窮的當輸入參數固定的情況下,返回值一定一樣當輸入不一樣,可能得到一樣的值。 哈希函數與哈希表 一、哈希函數 1.1 哈希函數性質: input輸入域是無窮的 output輸出域有窮的 當輸入參數固定的情況下,返回值一定一樣 當輸入不一樣,可能得到一樣的值。(必然會出現,因為輸入域很大,輸出域很小),產生哈希碰撞 均勻分布的特...

    Rainie 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<