Skip to main content

设计推特

题目

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

实现 Twitter 类:

  • Twitter() 初始化简易版推特对象
  • void postTweet(int userId, int tweetId) 根据给定的 tweetIduserId 创建一条新推文. 每次调用此函数都会使用一个不同的 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 的用户.
提示:
  • 1 <= userId, followerId, followeeId <= 500
  • 0 <= tweetId <= 104
  • 所有推特的 ID 都互不相同
  • postTweet, getNewsFeed, followunfollow 方法最多调用 3 * 10⁴
  • 用户不能关注自己
示例
输入
["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

题解

/**
* Initialize your data structure here.
*/
var Twitter = function () {
this.follows = {}
this.tweets = {}
this.timeline = 0
}

/**
* Compose a new tweet.
* @param {number} userId
* @param {number} tweetId
* @return {void}
*/
Twitter.prototype.postTweet = function (userId, tweetId) {
const tweetsOfUser = this.tweets[userId]

if (tweetsOfUser) {
this.tweets[userId].push({ id: tweetId, timeline: ++this.timeline })
} else {
this.tweets[userId] = [{ id: tweetId, timeline: ++this.timeline }]
}
}

/**
* 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.
* @param {number} userId
* @return {number[]}
*/
Twitter.prototype.getNewsFeed = function (userId) {
const tweetsOfUser = this.tweets[userId]
const followsOfUser = this.follows[userId]

const all = []

if (tweetsOfUser) {
all.push(...tweetsOfUser)
}

if (followsOfUser) {
followsOfUser.map((followeeId) => {
const tweetsOfFollowee = this.tweets[followeeId]
if (tweetsOfFollowee) {
all.push(...tweetsOfFollowee)
}
})
}

all.sort((a, b) => b.timeline - a.timeline)
return all.slice(0, 10).map((val) => val.id)
}

/**
* Follower follows a followee. If the operation is invalid, it should be a no-op.
* @param {number} followerId
* @param {number} followeeId
* @return {void}
*/
Twitter.prototype.follow = function (followerId, followeeId) {
if (followerId === followeeId) return

const currUser = this.follows[followerId]
if (currUser) {
if (currUser.includes(followeeId)) return
this.follows[followerId].push(followeeId)
} else {
this.follows[followerId] = [followeeId]
}
}

/**
* Follower unfollows a followee. If the operation is invalid, it should be a no-op.
* @param {number} followerId
* @param {number} followeeId
* @return {void}
*/
Twitter.prototype.unfollow = function (followerId, followeeId) {
const currUser = this.follows[followerId]

if (currUser) {
const index = currUser.indexOf(followeeId)

if (index > -1) {
this.follows[followerId].splice(index, 1)
}
}
}

/**
* Your Twitter object will be instantiated and called as such:
* var obj = new Twitter()
* obj.postTweet(userId,tweetId)
* var param_2 = obj.getNewsFeed(userId)
* obj.follow(followerId,followeeId)
* obj.unfollow(followerId,followeeId)
*/