日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

leetcode 355. Design Twitter | 355. 设计推特(Java)

發布時間:2024/2/28 java 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 leetcode 355. Design Twitter | 355. 设计推特(Java) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目

https://leetcode.com/problems/design-twitter/

題解

這題不難,就是業務代碼。。寫就是了。不知道為啥是 medium 題。

class Twitter {public static class Feed {int userId;int tweetId;public Feed(int userId, int tweetId) {this.userId = userId;this.tweetId = tweetId;}}List<Feed> tweetList;Map<Integer, Set<Integer>> followMap;/*** Initialize your data structure here.*/public Twitter() {tweetList = new ArrayList<>();followMap = new HashMap<>();}/*** Compose a new tweet.*/public void postTweet(int userId, int tweetId) {tweetList.add(new Feed(userId, 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) {Set<Integer> follows;if (followMap.containsKey(userId)) {follows = followMap.get(userId);} else {follows = new HashSet<>();}follows.add(userId);ArrayList<Integer> feedList = new ArrayList<>();for (int i = tweetList.size() - 1; i >= 0; i--) {if (follows.contains(tweetList.get(i).userId)) {feedList.add(tweetList.get(i).tweetId);if (feedList.size() == 10) return feedList;}}return feedList;}/*** Follower follows a followee. If the operation is invalid, it should be a no-op.*/public void follow(int followerId, int followeeId) {Set<Integer> followSet;if (!followMap.containsKey(followerId)) {followSet = new HashSet<>();} else {followSet = followMap.get(followerId);}followSet.add(followeeId);followMap.put(followerId, followSet);}/*** Follower unfollows a followee. If the operation is invalid, it should be a no-op.*/public void unfollow(int followerId, int followeeId) {if (followMap.containsKey(followerId)) {followMap.get(followerId).remove(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);*/

總結

以上是生活随笔為你收集整理的leetcode 355. Design Twitter | 355. 设计推特(Java)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。