Problem Description
Design a simplified version of Twitter where users can post tweets, follow/unfollow another user, and can see the 10 most recent tweets in the user's news feed.
Key Insights
- Each tweet must be linked to a user and has a unique ID.
- Users can follow and unfollow other users.
- A user's news feed should include tweets from users they follow, as well as their own tweets.
- The news feed must display tweets in reverse chronological order (most recent first).
Space and Time Complexity
Time Complexity:
- postTweet: O(1)
- getNewsFeed: O(N log N) where N is the number of tweets to retrieve (up to 10).
- follow/unfollow: O(1)
Space Complexity: O(U + T) where U is the number of users and T is the number of tweets.
Solution
To solve the problem, we will use the following data structures:
- A hash table (dictionary) to store tweets for each user, where the key is the user ID and the value is a list of tweet IDs.
- A hash table to maintain the follow relationship, where the key is the follower ID and the value is a set of followee IDs.
When a user posts a tweet, we append the tweet ID to their list of tweets. To retrieve a user's news feed, we collect tweets from the user and all users they follow, sorting them to get the 10 most recent tweets. Following and unfollowing users will update the follow relationship in constant time.