[路飞]_leetcode-355-设计推特

181 阅读2分钟

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

  • Twitter() 初始化简易版推特对象
  • void postTweet(int userId, int tweetId) 根据给定的 tweetId 和 userId 创建一条新推文。每次调用此函数都会使用一个不同的 tweetId 。
  • List<Integer> 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
var Twitter = function () {
  this.id = 0;
  this.users = {};
};
Twitter.prototype.postTweet = function (userId, tweetId) {
  if (!this.users[userId]) {
    this.users[userId] = {
      list: [],
      follows: new Set(),
    };
  }
  this.users[userId].list.push({ id: this.id++, tweetId });
  if (this.users[userId].list.length > 10) {
    this.users[userId].list.shift();
  }
};
Twitter.prototype.getNewsFeed = function (userId) {
  if (!this.users[userId]) return [];
  let arr = [...this.users[userId].list]
  this.users[userId].follows.forEach((followId) => {
    if (this.users[followId]) {
      arr.push(...this.users[followId].list);
    }
  });
  arr.sort((a, b) => b.id - a.id);
  const res = [];
  for (let i = 0; i < Math.min(arr.length, 10); i++) {
    res.push(arr[i].tweetId);
  }
  return res;
};

Twitter.prototype.follow = function (followerId, followeeId) {
  if (!this.users[followerId]) {
    this.users[followerId] = {
      list: [],
      follows: new Set(),
    };
  }
  this.users[followerId].follows.add(followeeId);
};
Twitter.prototype.unfollow = function (followerId, followeeId) {
  this.users[followerId].follows.delete(followeeId);
  console.log(this.users[followerId]);
};