642. Design Search Autocomplete System

Description

Design a search autocomplete system for a search engine. Users may input a sentence (at least one word and end with a special character '#'). For each character they type except '#', you need to return the top 3 historical hot sentences that have prefix the same as the part of sentence already typed. Here are the specific rules:

  1. The hot degree for a sentence is defined as the number of times a user typed the exactly same sentence before.
  2. The returned top 3 hot sentences should be sorted by hot degree (The first is the hottest one). If several sentences have the same degree of hot, you need to use ASCII-code order (smaller one appears first).
  3. If less than 3 hot sentences exist, then just return as many as you can.
  4. When the input is a special character, it means the sentence ends, and in this case, you need to return an empty list.

Your job is to implement the following functions:

The constructor function:

AutocompleteSystem(String[] sentences, int[] times): This is the constructor. The input is historical data. Sentences is a string array consists of previously typed sentences. Times is the corresponding times a sentence has been typed. Your system should record these historical data.

Now, the user wants to input a new sentence. The following function will provide the next character the user types:

List<String> input(char c): The input c is the next character typed by the user. The character will only be lower-case letters ('a' to 'z'), blank space (' ') or a special character ('#'). Also, the previously typed sentence should be recorded in your system. The output will be the top 3 historical hot sentences that have prefix the same as the part of sentence already typed.

Example:
Operation: AutocompleteSystem(["i love you", "island","ironman", "i love leetcode"], [5,3,2,2])
The system have already tracked down the following sentences and their corresponding times:
"i love you" : 5 times
"island" : 3 times
"ironman" : 2 times
"i love leetcode" : 2 times
Now, the user begins another search:

Operation: input('i')
Output: ["i love you", "island","i love leetcode"]
Explanation:
There are four sentences that have prefix "i". Among them, "ironman" and "i love leetcode" have same hot degree. Since ' ' has ASCII code 32 and 'r' has ASCII code 114, "i love leetcode" should be in front of "ironman". Also we only need to output top 3 hot sentences, so "ironman" will be ignored.

Operation: input(' ')
Output: ["i love you","i love leetcode"]
Explanation:
There are only two sentences that have prefix "i ".

Operation: input('a')
Output: []
Explanation:
There are no sentences that have prefix "i a".

Operation: input('#')
Output: []
Explanation:
The user finished the input, the sentence "i a" should be saved as a historical sentence in system. And the following input will be counted as a new search.

Note:

  1. The input sentence will always start with a letter and end with '#', and only one blank space will exist between two words.
  2. The number of complete sentences that to be searched won't exceed 100. The length of each sentence including those in the historical data won't exceed 100.
  3. Please use double-quote instead of single-quote when you write test cases even for a character input.
  4. Please remember to RESET your class variables declared in class AutocompleteSystem, as static/class variables are persisted across multiple test cases. Please see here for more details.

Solution

Trie, initiate time O(nl), input time O(k log k)

n: total sentences count
l: max sentence length
k: indicating the options available for the hot sentences

题目很长,但不太难,用Trie即可解决,不过需要注意:

  • 在input中,需要边读边写,但注意一定是先读再写,否则会查出刚插进去的sentence
  • 遇到'#'时,要返回empty list
  • 由于要返回Trie中存储的sentences,一种做法是给Trie添加一个成员变量str用来存储root到curr路径上形成的str,另外一种做法是在查询时将str作为参数传入child。本题目采用的是后面的思路。
  • 在dfs trie时,一定要现将root添加到结果集,再遍历children!否则会漏掉栈底的root。这点很重要,Trie的查询都要这么写。
  • 在getKHot时,可以用PriorityQueue来做,也可以用List来做然后排序。
class AutocompleteSystem {
    private Trie root;
    private Trie curr;
    private String str; // store currently visiting str
    
    public AutocompleteSystem(String[] sentences, int[] times) {
        root = new Trie();
        
        for (int i = 0; i < sentences.length; ++i) {
            insert(root, sentences[i], times[i]);
        }
        
        this.curr = root;
        this.str = "";
    }
    
    public List<String> input(char c) {
        if (c == '#') {
            insert(root, str, 1);
            curr = root;
            str = "";
            return Collections.EMPTY_LIST;  // return empty as designed
        }
        
        int i = getIndex(c);
        if (curr.children[i] == null) {
            curr.children[i] = new Trie();
        }

        str += c;
        curr = curr.children[i];
        return getKHot(curr, str, 3);
    }
    
    private void insert(Trie root, String s, int plusTimes) {
        for (int i = 0; i < s.length(); ++i) {
            int j = getIndex(s.charAt(i));
            if (root.children[j] == null) {
                root.children[j] = new Trie();
            }

            root = root.children[j];
        }

        root.times += plusTimes; // accumulate in case duplicate sentences
    }
    
    private List<String> getKHot(Trie root, String s, int k) {
        List<Pair> list = new ArrayList<>();
        dfs(root, s, list);
        Collections.sort(list, (a, b) 
                         -> (b.times != a.times 
                             ? b.times - a.times : a.str.compareTo(b.str)));
        List<String> res = new ArrayList<>();
        
        for (int i = 0; i < Math.min(k, list.size()); ++i) {
            res.add(list.get(i).str);
        }
        
        return res;
    }
    
    private void dfs(Trie root, String s, List<Pair> list) {
        if (root.times > 0) {   // add root first
            list.add(new Pair(s, root.times));
        }
        
        for (char c = 'a'; c <= 'z'; ++c) {
            int i = getIndex(c);
            if (root.children[i] != null) {
                dfs(root.children[i], s + c, list);
            }
        }
        
        if (root.children[26] != null) {
            dfs(root.children[26], s + ' ', list);
        }
    }
    
    private int getIndex(char c) {
        return c == ' ' ? 26 : c - 'a';
    }
    
    class Pair {
        String str;
        int times;
        
        public Pair(String s, int t) {
            str = s;
            times = t;
        }
    }
    
    class Trie {
        Trie[] children;
        int times;
        
        public Trie() {
            children = new Trie[27];
        }
    }
}

/**
 * Your AutocompleteSystem object will be instantiated and called as such:
 * AutocompleteSystem obj = new AutocompleteSystem(sentences, times);
 * List<String> param_1 = obj.input(c);
 */
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,716评论 4 364
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,558评论 1 294
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 109,431评论 0 244
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,127评论 0 209
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,511评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,692评论 1 222
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,915评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,664评论 0 202
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,412评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,616评论 2 245
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,105评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,424评论 2 254
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,098评论 3 238
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,096评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,869评论 0 197
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,748评论 2 276
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,641评论 2 271

推荐阅读更多精彩内容