[leetcode]355. Design Twitter

https://leetcode-cn.com/problems/design-twitter/

是个好题

经典解析

力扣

哈希表 + 链表 + 优先队列(经典多路归并问题)

这里「推特」,可以理解为中国的「微博」、「朋友圈」、「力扣」,真正的数据数需要存在数据库里的,并且还要加上一些非关系型的数据库(redis 等),不能是放在内存里的,这里只是简化了需求。

分析:

这是一类系统设计问题(上周我们做过的 LFU 缓存也是属于这一类问题),通常简化了很多需求,只要题目意思理解清楚,一般情况下不难写出,难在编码的细节和调试;

这里需求 3 和需求 4,只需要维护「我关注的人的 id 列表」 即可,不需要维护「谁关注了我」,由于不需要维护有序性,为了删除和添加方便, 「我关注的人的 id 列表」需要设计成哈希表(HashSet),而每一个人的和对应的他关注的列表存在一个哈希映射(HashMap)里;

这里我设计了「谁关注了我」的数组,是没有必要的 我使用了vector,在删除时需要频繁遍历,不是很方便。而且我不确定vector[userID]是否已经存在过了,这个比较麻烦

最复杂的是需求 2 getNewsFeed(userId): 每一个人的推文和他的 id 的关系,依然是存放在一个哈希表里; 对于每一个人的推文,只有顺序添加的需求,没有查找、修改、删除操作,因此可以使用线性数据结构,链表或者数组均可; 使用数组就需要在尾部添加元素,还需要考虑扩容的问题(使用动态数组); 使用链表就得在头部添加元素,由于链表本身就是动态的,无需考虑扩容; 检索最近的十条推文,需要先把这个用户关注的人的列表拿出来(实际上不是这么做的,请看具体代码,或者是「多路归并」的过程),然后再合并,排序以后选出 Top10,这其实是非常经典的「多路归并」的问题(「力扣」第 23 题:合并K个排序链表),这里需要使用的数据结构是优先队列,所以在上一步在存储推文列表的时候使用单链表是合理的,并且应该存储一个时间戳字段,用于比较哪一队的队头元素先出列。

这儿我的问题不大,我用的是vector,在头部添加元素,vector存放的是一个Tweet结构

剩下的就是一些细节问题了,例如需要查询关注人(包括自己)的最近十条推文,所以要把自己的推文也放进优先队列里。在出队(优先队列)、入队的时候需要考虑是否为空。

编写对这一类问题,需要仔细调试,并且养成良好的编码习惯,是很不错的编程练习问题。

画重点了!

如果需要维护数据的时间有序性,链表在特殊场景下可以胜任。因为时间属性通常来说是相对固定的,而不必去维护顺序性; 如果需要动态维护数据有序性,「优先队列」(堆)是可以胜任的,「力扣」上搜索「堆」(heap)标签,可以查看类似的问题;

设计类问题也是一类算法和数据结构的问题,并且做这一类问题有助于我们了解一些数据结构的大致思想和细节,「力扣」上搜索「设计」标签,可以查看类似的问题;

做完这个问题,不妨仔细思考一下这里使用链表存储推文的原因。

下面是动画演示,可以帮助大家理解「优先队列」是如何在「合并 k 个有序链表」上工作的。只不过「设计推特」这道题不需要去真的合并,并且使用的是最大堆。

这是个「多路归并」的问题,不熟悉的朋友,一定要掌握,非常重要。

写代码

struct TweetStruct{
    int userId;
    int tweetId;
    int tweetTime;
    TweetStruct* next = NULL;
    TweetStruct(int a, int b, int c): userId(a), tweetId(b), tweetTime(c), next(NULL) {}
};

struct cmp{
    bool operator()(TweetStruct* a, TweetStruct* b){
        return a->tweetTime < b->tweetTime;
    }
};

class Twitter {
public:
    int tweetTime = 0;
    unordered_map > followees;// followees of i
    unordered_map tweets;

    /** Initialize your data structure here. */
    Twitter() {       
    }

    /** Compose a new tweet. */
    void postTweet(int userId, int tweetId) {
        TweetStruct* newTweet = new TweetStruct(userId, tweetId, tweetTime);
        tweetTime++;

        auto tweetnode = tweets.find(userId);
        if(tweetnode == tweets.end()){
            tweets[userId] = newTweet;
        }else{
            newTweet->next = tweets[userId];
            tweets[userId] = newTweet;
        }
    }

    /** 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 ret;
        int cnt = 0;

        priority_queue, cmp> maxHeap;
        //多路归并
        if (followees.find(userId) != followees.end() && followees[userId].size() > 0){
            for(auto followee : followees[userId]){
                if (tweets.find(followee) == tweets.end() || tweets[followee] == NULL) continue;
                maxHeap.push(tweets[followee]);
            }
        }
        if (tweets.find(userId) != tweets.end() && tweets[userId] != NULL){
            maxHeap.push(tweets[userId]);
        }
        while(!maxHeap.empty() && cnt<10){
            TweetStruct* top = maxHeap.top();
            ret.push_back(top->tweetId);
            cnt++;
            if(top->next) maxHeap.push(top->next);
            maxHeap.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)
            return;
        vector tmp = followees[followerId];
        for(auto x : tmp){
            if (x == followeeId) return;
        }
        followees[followerId].push_back(followeeId);
    }

    /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
    void unfollow(int followerId, int followeeId) {
        if (followees.find(followerId) == followees.end() || followees[followerId].size() <= 0){
            return;
        }
        for(int i = 0; i < followees[followerId].size(); i++){
            if(followees[followerId][i] == followeeId){
                followees[followerId].erase(followees[followerId].begin()+i);
                break;
            }
        }
    }
};

/**
 * 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);
 */

我的思路

postTweet:新增一个tweet结构,把它和用户关联起来

getNewsFeed:获取用户的关注对象,把每个对象的第一个Tweet(如果有的话)入最大堆(按时间排序)。别忘记把自己发的Tweet入堆。取前十个(如果有十个的话)

follow:自己关注自己,不执行操作。关注的人已经在关注列表里了,不执行操作。把关注的人放进关注列表中。

unfollow:不关注的人不在关注列表中时,不执行操作。把不关注的人从关注列表中移除。

你可能感兴趣的:([leetcode]355. Design Twitter)