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

    class Twitter {
        unordered_map<int,deque<pair<int,int>>> uid_tid;//deque is double-ended queue
        unordered_map<int,unordered_set<int>> uid_fid;
        int times=0;public:
        /** Initialize your data structure here. */
        Twitter() {
            
        }
        
        /** Compose a new tweet. */
        void postTweet(int userId, int tweetId) {
            if(uid_tid[userId].size()==10) uid_tid[userId].pop_front();
            uid_tid[userId].push_back({tweetId,times++});
        }
        
        /** 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) {
            vector<pair<int,int>> vec(uid_tid[userId].begin(),uid_tid[userId].end());
            for(auto follow:uid_fid[userId]) {
                vec.insert(vec.end(),uid_tid[follow].begin(),uid_tid[follow].end());
            }
            sort(vec.begin(),vec.end(),[](pair<int,int>&a,pair<int,int>&b){return a.second>b.second;});
            vector<int> re;
            int size=vec.size()<10?vec.size():10;
            for(int i=0;i<size;++i) {
                re.push_back(vec[i].first);
            }
            return re;
        }
        
        /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
        void follow(int followerId, int followeeId) {
            if(followerId==followeeId) return;
            if(uid_fid[followerId].find(followeeId)!=uid_fid[followerId].end()) return;
            uid_fid[followerId].insert(followeeId);
        }
        
        /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
        void unfollow(int followerId, int followeeId) {
            uid_fid[followerId].erase(followeeId);
        }
    };
    
    /**
     * 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);
     */
  • 相关阅读:
    自动填写数据与自动点击锭钮提交数据
    序列化(Serialization)据为JSONP远端请求
    使用iframe实现同域跨站提交数据
    使用JSONP跨域请求数据
    程序自动化需要一个Windows服务
    SPC-Light显示正常的日期与时间
    使用DDE传输数据至SQL Server
    C# console application executing macro function
    Transfer data to SQL Server from SPC-Light with Excel macros
    MVC应用程序请求密码的功能(二)
  • 原文地址:https://www.cnblogs.com/LiuQiujie/p/12596791.html
Copyright © 2011-2022 走看看