zoukankan      html  css  js  c++  java
  • 355. Design Twitter

    Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is able to see the 10 most recent tweets in the user's news feed. Your design should support the following methods:

    1. postTweet(userId, tweetId): Compose a new tweet.
    2. getNewsFeed(userId): Retrieve the 10 most recent tweet ids in the user's news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent.
    3. follow(followerId, followeeId): Follower follows a followee.
    4. unfollow(followerId, followeeId): Follower unfollows a followee.

    Example:

    Twitter twitter = new Twitter();
    
    // User 1 posts a new tweet (id = 5).
    twitter.postTweet(1, 5);
    
    // User 1's news feed should return a list with 1 tweet id -> [5].
    twitter.getNewsFeed(1);
    
    // User 1 follows user 2.
    twitter.follow(1, 2);
    
    // User 2 posts a new tweet (id = 6).
    twitter.postTweet(2, 6);
    
    // User 1's news feed should return a list with 2 tweet ids -> [6, 5].
    // Tweet id 6 should precede tweet id 5 because it is posted after tweet id 5.
    twitter.getNewsFeed(1);
    
    // User 1 unfollows user 2.
    twitter.unfollow(1, 2);
    
    // User 1's news feed should return a list with 1 tweet id -> [5],
    // since user 1 is no longer following user 2.
    twitter.getNewsFeed(1);
    
     

    Approach #1: C++.

    class Twitter {
    private:
        struct P {
            int id, ref;
            P(int i = 0, int j = 0) :id(i), ref(j) {}
            inline bool operator<(const P &a) const {return ref > a.ref; }
        };
        
    
    public:
        /** Initialize your data structure here. */
        Twitter() {
            time = 1;
        }
        
        /** Compose a new tweet. */
        void postTweet(int userId, int tweetId) {
            userPost[userId].insert(P(tweetId, time++));
            userFollow[userId].insert(userId);
        }
        
        /** Retrieve the 10 most recent tweet ids in the user's news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent. */
        vector<int> getNewsFeed(int userId) {
            q.clear();
            vector<int> res;
            for (auto &r: userFollow[userId]) {
                int n = userPost[r].size();
                auto it = userPost[r].begin();
                n = min(n, 10);
                while(n--) {
                    if (q.size() < 10) {
                        q.insert(*it++);
                    } else {
                        auto c = q.end();
                        if (*it < *--c) {
                            q.erase(c);
                            q.insert(*it++);
                        }
                    }
                }
            }
            for (auto &r: q) res.push_back(r.id);
            return res;
        }
        
        /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
        void follow(int followerId, int followeeId) {
            userFollow[followerId].insert(followeeId);
        }
        
        /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
        void unfollow(int followerId, int followeeId) {
            if (followerId == followeeId) return ;
            userFollow[followerId].erase(followeeId);
        }
        
    private: 
        int time;
        set<P> q;
        unordered_map<int, set<int>> userFollow;
        unordered_map<int, set<P>> userPost;
            
    };
    
    /**
     * Your Twitter object will be instantiated and called as such:
     * Twitter obj = new Twitter();
     * obj.postTweet(userId,tweetId);
     * vector<int> param_2 = obj.getNewsFeed(userId);
     * obj.follow(followerId,followeeId);
     * obj.unfollow(followerId,followeeId);
     */
    

      

    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    [OpenStack] openstack keystone api 实验(curl)(转载)(亲自动手实验,附带实验运行结果)
    [Hadoop in China 2011] 中兴:NoSQL应用现状及电信业务实践
    [转]Windows Server 2012 和 System Center 2012 SP1,Virtual Machine Manager 中启用的软件定义的网络
    [Hadoop in China 2011] Facebook Message在HBase基础上的应用
    [转] ETL工具介绍
    [Hadoop in China 2011] eBay:选择HBase建立搜索引擎的原因
    [Cloudera Hadoop] CDH 4.0 Quick Start Guide (动手实践,最新版CDH4.0,企业版Hadoop)
    云操作系统OpenStack 优势与问题并存
    [OpenStack Crowbar] Build Crowbar.ISO
    [OpenStack] OpenStack ESSEX 全新手动安装,动手,实践,出真知!
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9966051.html
Copyright © 2011-2022 走看看