# 设计推特

设计一个简化版的推特(Twitter),可以让用户实现发送推文,关注/取消关注其他用户,能够看见关注人(包括自己)的最近 10 条推文。

实现 Twitter 类:

 

示例:

输入
["Twitter", "postTweet", "getNewsFeed", "follow", "postTweet", "getNewsFeed", "unfollow", "getNewsFeed"]
[[], [1, 5], [1], [1, 2], [2, 6], [1], [1, 2], [1]]
输出
[null, null, [5], null, null, [6, 5], null, [5]]

解释
Twitter twitter = new Twitter();
twitter.postTweet(1, 5); // 用户 1 发送了一条新推文 (用户 id = 1, 推文 id = 5)
twitter.getNewsFeed(1);  // 用户 1 的获取推文应当返回一个列表,其中包含一个 id 为 5 的推文
twitter.follow(1, 2);    // 用户 1 关注了用户 2
twitter.postTweet(2, 6); // 用户 2 发送了一个新推文 (推文 id = 6)
twitter.getNewsFeed(1);  // 用户 1 的获取推文应当返回一个列表,其中包含两个推文,id 分别为 -> [6, 5] 。推文 id 6 应当在推文 id 5 之前,因为它是在 5 之后发送的
twitter.unfollow(1, 2);  // 用户 1 取消关注了用户 2
twitter.getNewsFeed(1);  // 用户 1 获取推文应当返回一个列表,其中包含一个 id 为 5 的推文。因为用户 1 已经不再关注用户 2

 

提示:

以下错误的选项是?

## aop ### before ```cpp #include using namespace std; ``` ### after ```cpp ``` ## 答案 ```cpp class Twitter { public: /** Initialize your data structure here. */ Twitter() { } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { tweets[userId].push_back(make_pair(time++, tweetId)); } /** 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 getNewsFeed(int userId) { vector userIds({userId}); if (following.find(userId) != following.end()) { userIds.insert(userIds.begin(), following[userId].begin(), following[userId].end()); } vector index(userIds.size()); for (int i = 0; i < userIds.size(); ++i) { index[i] = tweets[userIds[i]].size(); } vector res; while (res.size() < 10) { int mxi = 0, mxtime = INT_MIN, mxTweet = 0; for (int i = 0; i < index.size(); ++i) { int idx = index[i]; if (idx > 0) { int ui = userIds[i]; int time = tweets[ui][idx].first; if (time > mxtime) { mxi = i; mxtime = time; mxTweet = tweets[ui][idx].second; } } } if (mxtime == INT_MIN) { break; } ++index[mxi]; res.push_back(mxTweet); } return res; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { if (followerId != followeeId) { following[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 (following.find(followerId) == following.end()) { return; } following[followerId].erase(followeeId); if (following[followerId].empty()) { following.erase(followerId); } } private: int time{0}; unordered_map> following; unordered_map>> tweets; }; /** * Your Twitter object will be instantiated and called as such: * Twitter obj = new Twitter(); * obj.postTweet(userId,tweetId); * vector param_2 = obj.getNewsFeed(userId); * obj.follow(followerId,followeeId); * obj.unfollow(followerId,followeeId); */ ``` ## 选项 ### A ```cpp class Twitter { private: list> twitterNews; map> followMap; public: /** Initialize your data structure here. */ Twitter() { } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { twitterNews.insert(twitterNews.begin(), pair(userId, tweetId)); } /** 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 getNewsFeed(int userId) { vector result; list>::iterator it = twitterNews.begin(); while (it != twitterNews.end() && result.size() < 10) { if (it->first == userId || followMap[userId][it->first]) { result.push_back(it->second); } it++; } return result; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { followMap[followerId][followeeId] = true; } /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */ void unfollow(int followerId, int followeeId) { followMap[followerId][followeeId] = false; } }; /** * Your Twitter object will be instantiated and called as such: * Twitter obj = new Twitter(); * obj.postTweet(userId,tweetId); * vector param_2 = obj.getNewsFeed(userId); * obj.follow(followerId,followeeId); * obj.unfollow(followerId,followeeId); */ ``` ### B ```cpp class Twitter { public: /** Initialize your data structure here. */ Twitter() { } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { context.push_back(make_pair(userId, tweetId)); } /** 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 getNewsFeed(int userId) { int n = context.size(); int count = 0; vector res; int k = n - 1; while (count < 10 && k >= 0) { auto it = context[k]; if (it.first == userId || tmp[make_pair(userId, it.first)]) { res.push_back(context[k].second); count++; } k--; } return res; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { tmp[make_pair(followerId, followeeId)] = 1; } /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */ void unfollow(int followerId, int followeeId) { tmp[make_pair(followerId, followeeId)] = 0; } private: map, int> tmp; vector> context; }; /** * Your Twitter object will be instantiated and called as such: * Twitter* obj = new Twitter(); * obj->postTweet(userId,tweetId); * vector param_2 = obj->getNewsFeed(userId); * obj->follow(followerId,followeeId); * obj->unfollow(followerId,followeeId); */ ``` ### C ```cpp class Twitter { public: /** Initialize your data structure here. */ Twitter() { } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { context.push_back(make_pair(userId, tweetId)); } /** 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 getNewsFeed(int userId) { int n = context.size(); int count = 0; vector res; int k = n - 1; while (count < 10 && k >= 0) { auto it = context[k]; if (it.first == userId || tmp[make_pair(userId, it.first)]) { res.push_back(context[k].second); count++; } k--; } return res; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { tmp[make_pair(followerId, followeeId)] = 1; } /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */ void unfollow(int followerId, int followeeId) { tmp[make_pair(followerId, followeeId)] = 0; } private: map, int> tmp; vector> context; }; /** * Your Twitter object will be instantiated and called as such: * Twitter* obj = new Twitter(); * obj->postTweet(userId,tweetId); * vector param_2 = obj->getNewsFeed(userId); * obj->follow(followerId,followeeId); * obj->unfollow(followerId,followeeId); */ ```