• 355. 设计推特


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

    实现 Twitter 类:

    Twitter() 初始化简易版推特对象
    void postTweet(int userId, int tweetId) 根据给定的 tweetId 和 userId 创建一条新推文。每次调用此函数都会使用一个不同的 tweetId 。
    List getNewsFeed(int userId) 检索当前用户新闻推送中最近  10 条推文的 ID 。新闻推送中的每一项都必须是由用户关注的人或者是用户自己发布的推文。推文必须 按照时间顺序由最近到最远排序 。
    void follow(int followerId, int followeeId) ID 为 followerId 的用户开始关注 ID 为 followeeId 的用户。
    void unfollow(int followerId, int followeeId) ID 为 followerId 的用户不再关注 ID 为 followeeId 的用户。
     

    示例:

    输入
    ["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

    思路:哈希表+链表+哈希集合

    设计朋友圈时间线功能 :: labuladong的算法小抄 (gitee.io)

     class cmp
        {
        public:
            bool operator()(Tweet* a,Tweet* b)
            {
                return a->timetime;
            }
        };

    priority_queue,cmp> q; 

    注意:priority_queue的第三个参数只能传仿函数,不能传函数指针,sort()方法的第三个参数两种方法均可

    1. int global_time=0;
    2. struct Tweet//推文类(单链表结点)
    3. {
    4. int tweetId;
    5. int time;
    6. Tweet* next;
    7. Tweet():tweetId(0),time(0),next(nullptr) {}
    8. Tweet(int tweetId):tweetId(tweetId),time(global_time++),next(nullptr)//每新建一条tweet,时间就加一
    9. {}
    10. };
    11. class User//用户类
    12. {
    13. public:
    14. int userId;
    15. unordered_set<int> follows;//关注的人存在无序集合中,以O(1)的时间复杂度插入、删除
    16. Tweet* head;
    17. User():userId(0),head(nullptr) {}
    18. User(int userId):userId(userId),head(nullptr) //head只是一个头指针,没有设置虚拟头结点
    19. {
    20. follows.insert(userId);//初始化时自己关注下自己
    21. }
    22. void post(int tweetId)//发推
    23. {
    24. Tweet* tweet=new Tweet(tweetId);
    25. tweet->next=head;//头插法
    26. head=tweet;//head作为头指针,一直指向链表第一个结点
    27. }
    28. void follow(int userId)//关注
    29. {
    30. this->follows.insert(userId);
    31. }
    32. void unfollow(int userId)//不能取关自己,即follows里至少要存着它自己
    33. {
    34. if(userId!=this->userId)
    35. {
    36. this->follows.erase(userId);
    37. }
    38. }
    39. };
    40. class Twitter
    41. {
    42. private:
    43. unordered_map<int,User*> mapping;//
    44. public:
    45. Twitter() {}
    46. void postTweet(int userId, int tweetId)//发推
    47. {
    48. if(!mapping.count(userId))
    49. {
    50. mapping[userId]=new User(userId);
    51. }
    52. mapping[userId]->post(tweetId);
    53. }
    54. void follow(int followerId, int followeeId)//关注
    55. {
    56. if(!mapping.count(followerId))//关注者不存在
    57. {
    58. mapping[followerId]=new User(followerId);
    59. }
    60. if(!mapping.count(followeeId))//被关注者不存在
    61. {
    62. mapping[followeeId]=new User(followeeId);
    63. }
    64. mapping[followerId]->follow(followeeId);
    65. }
    66. void unfollow(int followerId, int followeeId)//当followerId不存在时,不操作
    67. {
    68. if(mapping.count(followerId))
    69. {
    70. mapping[followerId]->unfollow(followeeId);
    71. }
    72. }
    73. class cmp
    74. {
    75. public:
    76. bool operator()(Tweet* a,Tweet* b)
    77. {
    78. return a->timetime;
    79. }
    80. };
    81. vector<int> getNewsFeed(int userId)//利用优先队列,合并k个有序(以time大小为序)链表
    82. {
    83. vector<int> res;
    84. //priority_queue的第三个参数只能传仿函数,不能传函数指针,sort()方法的第三个参数两种方法均可
    85. priority_queue,cmp> q;
    86. if(mapping[userId]==nullptr)//userId没有对应的User
    87. {
    88. return res;
    89. }
    90. for(int id:mapping[userId]->follows)//先将所有链表头节点插入优先队列
    91. {
    92. if(mapping[id]->head!=nullptr)//链表头结点不为空
    93. q.push(mapping[id]->head);
    94. }
    95. while(!q.empty())
    96. {
    97. if(res.size()==10)//最多返回10条就够了
    98. break;
    99. Tweet* node=q.top();//弹出time值最大的(最近发表的)
    100. int tid=node->tweetId;
    101. res.push_back(tid);
    102. q.pop();
    103. if(node->next!=nullptr)//将下一篇tweet插入,进行排序
    104. {
    105. q.push(node->next);
    106. }
    107. }
    108. return res;
    109. }
    110. };
    111. /**
    112. * Your Twitter object will be instantiated and called as such:
    113. * Twitter* obj = new Twitter();
    114. * obj->postTweet(userId,tweetId);
    115. * vector param_2 = obj->getNewsFeed(userId);
    116. * obj->follow(followerId,followeeId);
    117. * obj->unfollow(followerId,followeeId);
    118. */

  • 相关阅读:
    【算法集训 | 暑期刷题营】7.20题---贪心
    C和指针 第11章 动态内存分配 11.10 问题
    通过Patch-Base来优化VSR中的时间冗余
    C++/Qt 小知识记录4
    Redis 的 Java 客户端(Jedis、SpringDataRedis、SpringCache、Redisson)基本操作指南
    [Codeforces] number theory (R1200) Part.10
    数据资产到底如何入表?
    fpga内嵌逻辑分析仪使用方法
    前端碎知识点
    vCenter纳管ESXI主机出错
  • 原文地址:https://blog.csdn.net/weixin_50437588/article/details/126410668