zoukankan      html  css  js  c++  java
  • leetcode@ [355] Design Twitter (Object Oriented Programming)

    https://leetcode.com/problems/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:

    1. postTweet(userId, tweetId): Compose a new tweet.
    2. 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.
    3. follow(followerId, followeeId): Follower follows a followee.
    4. unfollow(followerId, followeeId): Follower unfollows a followee.
    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);
    Example
    public class Twitter {
        
        class pair {
            public int userId;
            public int tweetId;
            
            public pair(int userId, int tweetId) {
                this.userId = userId;
                this.tweetId = tweetId;
            }
        }
        
        public ArrayList<pair> tweetList =  null;
        public HashMap<Integer, HashSet<Integer> > followList = null;
    
        /** Initialize your data structure here. */
        public Twitter() {
            tweetList = new ArrayList<pair> ();
            followList = new HashMap<Integer, HashSet<Integer> > ();
        }
        
        /** Compose a new tweet. */
        public void postTweet(int userId, int tweetId) {
                
            pair p = new pair(userId, tweetId);
            tweetList.add(p);
        }
        
        /** 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> rs = new ArrayList<Integer> ();
            if(!followList.containsKey(userId)) {
                followList.put(userId, new HashSet<Integer> ());
            }
            
            HashSet<Integer> network = followList.get(userId);
            
            int size = tweetList.size();
            for(int i=size-1, t=10; i>=0 && t>0; --i) {
                pair p = tweetList.get(i);
                //System.out.println(p.userId);
                if(p.userId == userId || network.contains(p.userId)) {
                    rs.add(p.tweetId);
                    --t;
                }
            }
            
            return rs;
        }
        
        /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
        public void follow(int followerId, int followeeId) {
            if(!followList.containsKey(followerId)) {
                followList.put(followerId, new HashSet<Integer> ());
            } 
            followList.get(followerId).add(followeeId);
        }
        
        /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
        public void unfollow(int followerId, int followeeId) {
            if(followList.containsKey(followerId)) {
                followList.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);
     */
    View Code
  • 相关阅读:
    网页一屏到底有多大 1024*768 800*600 网页设计大小 网页设计尺寸
    去掉VS2005中水晶报表的登录界面(ZT)
    Visual Studio 2005 IDE 技巧和窍门
    asp.net大页面载入时以进度条显示zt
    从webservice读取string[]至downlist,增加onchange事件,更改相关显示。
    在asp.net Sql server (可以是存储过程)中使用事务回滚
    得到页面所有的form内对象数值——————为一个控件加一个客户端属性
    Agile Web Development 4th ed. Can't mass assign.error
    Ubuntu12.04中安装和配置Java JDK(转)
    Javascript没有块级作用域
  • 原文地址:https://www.cnblogs.com/fu11211129/p/5625498.html
Copyright © 2011-2022 走看看