Designing Twitter -LeetCode
Requirements for Twitter System Design
1 Functional Requirements:
User Management
A user can create an account, login/logout.
Should be able to post new tweets (can be text, image, video etc).
Should be able to follow other users.
Should have a newsfeed feature consisting of tweets from the people the user is following.
Should be able to search tweets.
Tweets
A user can post a tweet (limited to 280 characters).
A user can delete their own tweet.
Tweets should have a unique ID, text content, timestamp, and author.
Timeline
Each user should be able to view their timeline (tweets from the users they follow, ordered by most recent first).
A user can also view their own tweets.
Likes & Retweets (Optional Enhancement)
A user can like/unlike a tweet.
A user can retweet a tweet.
NonFunctional Requirements:
High availability with minimal latency.
Ths system should be scalable and efficient.
Extended Requirements:
Metrices and analytics
Retweet functionality
Favorite tweets
Explanation
-
User Service: handles register/login/logout, profile, follow/unfollow
-
Tweet Service: handles posting/deleting tweets
-
Timeline Service: fetches all tweets from followed users and orders by timestamp
-
DB: relational schema with tables
users
,tweets
,follows
,likes
,retweets
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.
Implement the Twitter class:
Twitter() Initializes your twitter object.
void postTweet(int userId, int tweetId) Composes a new tweet with ID tweetId by the user userId. Each call to this function will be made with a unique tweetId.
List<Integer> getNewsFeed(int userId) Retrieves 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 themself. Tweets must be ordered from most recent to least recent.
void follow(int followerId, int followeeId) The user with ID followerId started following the user with ID followeeId.
void unfollow(int followerId, int followeeId) The user with ID followerId started unfollowing the user with ID followeeId.
Example 1:
Input
["Twitter", "postTweet", "getNewsFeed", "follow", "postTweet", "getNewsFeed", "unfollow", "getNewsFeed"]
[[], [1, 5], [1], [1, 2], [2, 6], [1], [1, 2], [1]]
Output
[null, null, [5], null, null, [6, 5], null, [5]]
Explanation
Twitter twitter = new Twitter();
twitter.postTweet(1, 5); // User 1 posts a new tweet (id = 5).
twitter.getNewsFeed(1); // User 1's news feed should return a list with 1 tweet id -> [5]. return [5]
twitter.follow(1, 2); // User 1 follows user 2.
twitter.postTweet(2, 6); // User 2 posts a new tweet (id = 6).
twitter.getNewsFeed(1); // 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.unfollow(1, 2); // User 1 unfollows user 2.
twitter.getNewsFeed(1); // User 1's news feed should return a list with 1 tweet id -> [5], since user 1 is no longer following user 2.
Constraints:
1 <= userId, followerId, followeeId <= 500
0 <= tweetId <= 104
All the tweets have unique IDs.
At most 3 * 104 calls will be made to postTweet, getNewsFeed, follow, and unfollow.
A user cannot follow himself.
🧠Step 1 — Understand the Problem
We need to design a mini Twitter with:
-
postTweet(userId, tweetId)
→ user posts a tweet -
getNewsFeed(userId)
→ get the 10 most recent tweets from:-
this user
-
users they follow
-
-
follow(followerId, followeeId)
-
unfollow(followerId, followeeId)
Constraints:
-
max 500 users
-
tweets have unique IDs
-
at most 3*10^4 operations
-
getNewsFeed should be most recent 10 tweets
🧠Step 2 — Think About the Data We Need
We must track:
🗂 User Follow Relations
We must know which users a user follows
So, use a Map<Integer, Set<Integer>> followMap
-
followMap.get(1) = {2,3,4}
→ user 1 follows 2,3,4
🗂 Tweets
We must store tweets posted by each user and their time order
So, use a Map<Integer, List<Tweet>> tweetMap
where Tweet
is a small class:
🧠Step 3 — How to Get Top 10 Most Recent Tweets
When getNewsFeed(userId)
is called:
-
Collect all tweets from:
-
this user
-
all followees
-
-
Sort them by
time
descending -
Pick first 10
Efficient approach:
-
Put them into a Max Heap (PriorityQueue) sorted by
time
-
Pop 10 elements from the heap
🧠Step 4 — How Follow & Unfollow Work
follow(a, b)
-
add
b
tofollowMap.get(a)
unfollow(a, b)
-
remove
b
fromfollowMap.get(a)
Don’t allow a user to follow himself.
🧠Step 5 — Write the Class Skeleton
class Twitter {
public Twitter() {}
public void postTweet(int userId, int tweetId) {}
public List<Integer> getNewsFeed(int userId) {}
public void follow(int followerId, int followeeId) {}
public void unfollow(int followerId, int followeeId) {}
}
🧠Step 6 — Implement Internals
Comments
Post a Comment