ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

1268. Search Suggestions System (M)

2021-05-31 22:34:58  阅读:304  来源: 互联网

标签:Search 1268 Trie Suggestions havana products searchWord root children


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
}

标签:Search,1268,Trie,Suggestions,havana,products,searchWord,root,children
来源: https://www.cnblogs.com/mapoos/p/14833647.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有