[leetcode]635. Design Log Storage System

You are given several logs that each log contains a unique id and timestamp. Timestamp is a string that has the following format: Year:Month:Day:Hour:Minute:Second, for example, 2017:01:01:23:59:59. All domains are zero-padded decimal numbers.

Design a log storage system to implement the following functions:

void Put(int id, string timestamp): Given a log's unique id and timestamp, store the log in your storage system.


int[] Retrieve(String start, String end, String granularity): Return the id of logs whose timestamps are within the range from start to end. Start and end all have the same format as timestamp. However, granularity means the time level for consideration. For example, start = "2017:01:01:23:59:59", end = "2017:01:02:23:59:59", granularity = "Day", it means that we need to find the logs within the range from Jan. 1st 2017 to Jan. 2nd 2017.

Example 1:

put(1, "2017:01:01:23:59:59");
put(2, "2017:01:01:22:59:59");
put(3, "2016:01:01:00:00:00");
retrieve("2016:01:01:01:01:01","2017:01:01:23:00:00","Year"); // return [1,2,3], because you need to return all logs within 2016 and 2017.
retrieve("2016:01:01:01:01:01","2017:01:01:23:00:00","Hour"); // return [1,2], because you need to return all logs start from 2016:01:01:01 to 2017:01:01:23, where log 3 is left outside the range.

Note:

  1. There will be at most 300 operations of Put or Retrieve.
  2. Year ranges from [2000,2017]. Hour ranges from [00,23].
  3. Output for Retrieve has no order required.

Solution:

package com.billkang;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Created by Kangbin on 2017/7/8.
 */
public class LogSystem {
    private Map<String, Integer> mapTable;
    private Map<String, Integer> mapPlace;

    private void init() {
        mapPlace = new HashMap<String, Integer>();
        mapPlace.put("Year",5);
        mapPlace.put("Month",8);
        mapPlace.put("Day",11);
        mapPlace.put("Hour",14);
        mapPlace.put("Minute",17);
        mapPlace.put("Second",19);
    }

    public LogSystem() {
        mapTable = new HashMap<String, Integer>();
        init();
    }

    public void put(int id, String timestamp) {
        mapTable.put(timestamp, id);
    }

    public List<Integer> retrieve(String s, String e, String gra) {
        List<Integer> result = new ArrayList<Integer>();
        int lens = mapPlace.get(gra);
        String start = s.substring(0,lens);
        String finish = e.substring(0, lens);
        for(Map.Entry<String, Integer> entry:mapTable.entrySet()) {
            String key = entry.getKey();
            String tmp = key.substring(0, lens);
            // 时间上的对比直接可以用字符串的比较函数来做
            if(tmp.compareTo(start)>=0 && tmp.compareTo(finish)<=0) {
                result.add(entry.getValue());
            }
        }
        return result;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值