forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path_355.java
173 lines (144 loc) · 5.98 KB
/
_355.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.PriorityQueue;
import java.util.Set;
/**
* 355. Design Twitter
*
* 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. Your design should support the following methods:
postTweet(userId, tweetId): Compose a new tweet.
getNewsFeed(userId): 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.
follow(followerId, followeeId): Follower follows a followee.
unfollow(followerId, followeeId): Follower unfollows a followee.
Example:
Twitter twitter = new Twitter();
// User 1 posts a new tweet (id = 5).
twitter.postTweet(1, 5);
// User 1's news feed should return a list with 1 tweet id -> [5].
twitter.getNewsFeed(1);
// User 1 follows user 2.
twitter.follow(1, 2);
// User 2 posts a new tweet (id = 6).
twitter.postTweet(2, 6);
// 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.getNewsFeed(1);
// User 1 unfollows user 2.
twitter.unfollow(1, 2);
// User 1's news feed should return a list with 1 tweet id -> [5],
// since user 1 is no longer following user 2.
twitter.getNewsFeed(1);
*/
public class _355 {
//credit: https://discuss.leetcode.com/topic/48100/java-oo-design-with-most-efficient-function-getnewsfeed
public static class Twitter {
private static int timestamp = 0;
private Map<Integer, User> map;
class Tweet {
public int time;
public int id;
public Tweet next;//have a pointer, so we could be more memory efficient when retrieving tweets, think about merging k sorted lists
public Tweet(int id) {
this.id = id;
time = timestamp++;
next = null;
}
}
//the meat part of this OO design, have a User object itself, have follow() and unfollow() method embedded inside it
class User {
public int id;
public Set<Integer> followed;
public Tweet tweetHead;
public User(int id) {
this.id = id;
followed = new HashSet<>();
followed.add(id);//followe itself first
this.tweetHead = null;
}
public void follow(int followeeId) {
followed.add(followeeId);
}
public void unfollow(int followeeId) {
followed.remove(followeeId);
}
public void postTweet(int tweetId) {
//every time we post, we prepend it to the head of the tweet
Tweet head = new Tweet(tweetId);
head.next = tweetHead;
tweetHead = head;//don't forget to overwrite tweetHead with the new head
}
}
/** Initialize your data structure here. */
public Twitter() {
map = new HashMap();
}
/** Compose a new tweet. */
public void postTweet(int userId, int tweetId) {
//update oneself newsFeed and also all of his followers' newsFeed
if (!map.containsKey(userId)) {
User user = new User(userId);
map.put(userId, user);
}
User user = map.get(userId);
user.postTweet(tweetId);
}
/** 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. */
public List<Integer> getNewsFeed(int userId) {
List<Integer> newsFeed = new LinkedList<>();
if (!map.containsKey(userId)) {
return newsFeed;
}
Set<Integer> users = map.get(userId).followed;
PriorityQueue<Tweet> heap = new PriorityQueue<>(users.size(), (a, b) -> b.time - a.time);
for (int user : users) {
Tweet tweet = map.get(user).tweetHead;
//it's super important to check null before putting into the heap
if (tweet != null) {
heap.offer(tweet);
}
}
int count = 0;
while (!heap.isEmpty() && count < 10) {
Tweet tweet = heap.poll();
newsFeed.add(tweet.id);
count++;
if (tweet.next != null) {
heap.offer(tweet.next);
}
}
return newsFeed;
}
/** Follower follows a followee. If the operation is invalid, it should be a no-op. */
public void follow(int followerId, int followeeId) {
if (!map.containsKey(followeeId)) {
User user = new User(followeeId);
map.put(followeeId, user);
}
if (!map.containsKey(followerId)) {
User user = new User(followerId);
map.put(followerId, user);
}
map.get(followerId).follow(followeeId);
}
/** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
public void unfollow(int followerId, int followeeId) {
if (!map.containsKey(followerId) || followeeId == followerId) {
return;
}
map.get(followerId).unfollow(followeeId);
}
}
/**
* Your Twitter object will be instantiated and called as such:
* Twitter obj = new Twitter();
* obj.postTweet(userId,tweetId);
* List<Integer> param_2 = obj.getNewsFeed(userId);
* obj.follow(followerId,followeeId);
* obj.unfollow(followerId,followeeId);
*/
}