您的位置:首页 > 其它

[leetcode] 355. Design Twitter

2016-06-13 11:36 429 查看
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:

postTweet(userId, tweetId): Compose a new tweet.
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.
follow(followerId, followeeId): Follower follows a followee.
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);


这道题是设计一个简易社交网络,题目难度为Medium。

需要实现发tweet、获取新tweet推送、关注和取消关注四个功能,数据存储方式比较多,这里采用Hash Table来存储所有用户的tweet列表和关注列表,单个用户的tweet列表用vector存储,因为关注列表涉及到插入和删除,所以选择了unordered_set来存储单个用户的关注列表,不用list是因为list在删除时需要查找,时间复杂度理论上比unordered_set高。由于tweetId不能表示该tweet的发布时间,所以在tweet存储时加了时间戳来表示tweet的发布顺序。还可以采用其他数据存储方式,感兴趣的同学可以比较一下不同数据结构的优劣。

​数据结构选定之后实现就比较简单了,获取最新10条tweet推送时,遍历用户的关注列表,将他关注的用户tweet列表中的前10条tweet存入堆中,并将自身tweet列表的前10条tweet存入堆中,由于堆中数据依据时间戳排序,所以从堆中取出前10条tweet即获得了最新10条tweet推送。具体代码:
class Twitter {
unordered_map<int, vector<pair<int, int>>> tweet;
unordered_map<int, unordered_set<int>> flwee;
int timestamp;
public:
/** Initialize your data structure here. */
Twitter() : timestamp(0) {}

/** Compose a new tweet. */
void postTweet(int userId, int tweetId) {
tweet[userId].push_back(make_pair(timestamp++, 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<int> getNewsFeed(int userId) {
priority_queue<pair<int, int>> nwsfd;
vector<int> ret;
int cnt = 0;

while(cnt < 10 && cnt < tweet[userId].size()) {
nwsfd.push(tweet[userId][tweet[userId].size()-1-cnt]);
++cnt;
}
for(auto f:flwee[userId]) {
cnt = 0;
while(cnt < 10 && cnt < tweet[f].size()) {
nwsfd.push(tweet[f][tweet[f].size()-1-cnt]);
++cnt;
}
}
for(int i=0; i<10; ++i) {
if(nwsfd.empty()) break;
ret.push_back(nwsfd.top().second);
nwsfd.pop();
}

return ret;
}

/** Follower follows a followee. If the operation is invalid, it should be a no-op. */
void follow(int followerId, int followeeId) {
if(followerId != followeeId)
flwee[followerId].insert(followeeId);
}

/** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
void unfollow(int followerId, int followeeId) {
flwee[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);
*/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode