zoukankan      html  css  js  c++  java
  • 1268. Search Suggestions System (M)

    Search Suggestions System (M)

    题目

    Given an array of strings products and a string searchWord. We want to design a system that suggests at most three product names from products after each character of searchWord is typed. Suggested products should have common prefix with the searchWord. If there are more than three products with a common prefix return the three lexicographically minimums products.

    Return list of lists of the suggested products after each character of searchWord is typed.

    Example 1:

    Input: products = ["mobile","mouse","moneypot","monitor","mousepad"], searchWord = "mouse"
    Output: [
    ["mobile","moneypot","monitor"],
    ["mobile","moneypot","monitor"],
    ["mouse","mousepad"],
    ["mouse","mousepad"],
    ["mouse","mousepad"]
    ]
    Explanation: products sorted lexicographically = ["mobile","moneypot","monitor","mouse","mousepad"]
    After typing m and mo all products match and we show user ["mobile","moneypot","monitor"]
    After typing mou, mous and mouse the system suggests ["mouse","mousepad"]
    

    Example 2:

    Input: products = ["havana"], searchWord = "havana"
    Output: [["havana"],["havana"],["havana"],["havana"],["havana"],["havana"]]
    

    Example 3:

    Input: products = ["bags","baggage","banner","box","cloths"], searchWord = "bags"
    Output: [["baggage","bags","banner"],["baggage","bags","banner"],["baggage","bags"],["bags"]]
    

    Example 4:

    Input: products = ["havana"], searchWord = "tatiana"
    Output: [[],[],[],[],[],[],[]]
    

    Constraints:

    • 1 <= products.length <= 1000
    • There are no repeated elements in products.
    • 1 <= Σ products[i].length <= 2 * 10^4
    • All characters of products[i] are lower-case English letters.
    • 1 <= searchWord.length <= 1000
    • All characters of searchWord are lower-case English letters.

    题意

    实现一个搜索提示功能:每输入一个字符,返回三个以已经输入的字符作为前缀的单词字符串。

    思路

    字典树。先构建字典树,再遍历searchWord的每一个前缀,找到最多3个符合的单词。


    代码实现

    Java

    class Solution {
        public List<List<String>> suggestedProducts(String[] products, String searchWord) {
            List<List<String>> ans = new ArrayList<>();
            Trie root = new Trie();
            
            for (int i =0 ; i < products.length;i++) {
                insert(root, products[i], i);
            }
    
            for (char c : searchWord.toCharArray()) {
                List<String> tmp = new ArrayList<>();
                if (root == null || root.children[c - 'a'] == null) {
                    root = null;
                } else {
                    root = root.children[c - 'a'];
                    find(root, products, tmp);
                }
                ans.add(tmp);
            }
    
            return ans;
        }
    
        private void find(Trie root, String[] products, List<String> list) {
            if (list.size() == 3) return;
            if (root.isEnd) list.add(products[root.index]);
    
            for (int i = 0; i < 26; i++) {
                if (root.children[i] != null) {
                    find(root.children[i], products, list);
                }
            }
        }
    
        private void insert(Trie root, String word, int index) {
            for (char c : word.toCharArray()) {
                if (root.children[c - 'a'] == null) root.children[c - 'a'] = new Trie();
                root = root.children[c - 'a'];
            }
            root.isEnd = true;
            root.index = index;
        }
    
        class Trie {
            Trie[] children = new Trie[26];
            boolean isEnd = false;
            int index;
        }
    }
    

    JavaScript

    /**
     * @param {string[]} products
     * @param {string} searchWord
     * @return {string[][]}
     */
    var suggestedProducts = function (products, searchWord) {
        const ans = []
        
        for (let i = 1; i <= searchWord.length; i++) {
            const remain = products.filter(word => word.startsWith(searchWord.slice(0, i)))
            ans.push(remain.sort().slice(0, 3))
        }
        
        return ans
    }
    
  • 相关阅读:
    (转贴)Visual Studio2005 + Visual SourceSafe 2005 实现团队开发、源代码管理、版本控制
    vss2003的资料说明,转贴自MSDN
    非常经典的网络蜘蛛示例,我是转载在这里的
    Vsi的路径所在
    (转)三种模拟自动登录和提交POST信息的实现方法
    (转)关于网络蜘蛛的知识
    (转)thin的制作DataGrid的HTC,转来自己用做开发
    转帖:麻雀虽小,五脏俱全-C# 创建windows服务、socket通讯实例
    Google Maps API编程资源大全
    C#实现的根据年月日计算星期几的函数(转)
  • 原文地址:https://www.cnblogs.com/mapoos/p/14833647.html
Copyright © 2011-2022 走看看