916. Word Subsets - Medium

本文介绍了一种算法,用于从两个字符串数组中找出所有通用词汇。通过计算每个单词中字母的出现次数,并比较这些计数来确定一个单词是否为另一个单词的超集。最终返回一个包含所有通用词汇的列表。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

We are given two arrays A and B of words.  Each word is a string of lowercase letters.

Now, say that word b is a subset of word a if every letter in b occurs in a, including multiplicity.  For example, "wrr"is a subset of "warrior", but is not a subset of "world".

Now say a word a from A is universal if for every b in Bb is a subset of a

Return a list of all universal words in A.  You can return the words in any order.

 

Example 1:

Input: A = ["amazon","apple","facebook","google","leetcode"], B = ["e","o"]
Output: ["facebook","google","leetcode"]

Example 2:

Input: A = ["amazon","apple","facebook","google","leetcode"], B = ["l","e"]
Output: ["apple","google","leetcode"]

Example 3:

Input: A = ["amazon","apple","facebook","google","leetcode"], B = ["e","oo"]
Output: ["facebook","google"]

Example 4:

Input: A = ["amazon","apple","facebook","google","leetcode"], B = ["lo","eo"]
Output: ["google","leetcode"]

Example 5:

Input: A = ["amazon","apple","facebook","google","leetcode"], B = ["ec","oc","ceo"]
Output: ["facebook","leetcode"]

 

Note:

  1. 1 <= A.length, B.length <= 10000
  2. 1 <= A[i].length, B[i].length <= 10
  3. A[i] and B[i] consist only of lowercase letters.
  4. All words in A[i] are unique: there isn't i != j with A[i] == A[j].

 

when we check whether wordA in A is a superset of wordB, we are individually checking the counts of letters: for each letter, N_letter(wordA) >= N_letter(wordB). this is the same as checking N_letter(wordA) >= max (N_letter(wordB))

in other words, reduce B to a single word bmax, then compare the counts of letters between words a in A, and bmax

time = O(A + B), A and B is the total amount of information in A and B respectively, space = O(A.length + B.length)

 

class Solution {
    public List<String> wordSubsets(String[] A, String[] B) {
        int[] bmax = new int[26];
        
        for(String b : B) {
            int[] bCount = count(b);
            for(int i = 0; i < 26; i++) {
                bmax[i] = Math.max(bmax[i], bCount[i]);
            }
        }
        
        List<String> res = new ArrayList<>();
        for(String a : A) {
            int[] aCount = count(a);
            for(int i = 0; i < 26; i++) {
                if(aCount[i] < bmax[i]) {
                    break;
                }
                if(i == 25) {
                    res.add(a);
                }
            }
        }
        return res;
    }
    
    public int[] count(String s) {
        int[] counter = new int[26];
        for(char c : s.toCharArray()) {
            counter[c - 'a']++;
        }
        return counter;
    }
}

 

转载于:https://www.cnblogs.com/fatttcat/p/11217984.html

好的,您的问题是如何实现快速排序算法并进行效率分析,同时使用随机生成的整数进行排序并将结果保存到文件中。我可以帮您解决这个问题。 首先介绍一下快速排序算法的基本思想:首先在数组中选择一个元素作为基准值,然后把数组中小于基准值的元素放在它的左边,大于基准值的元素放在它的右边。然后对左右两个子集递归地进行同样的操作,直到子集中只有一个元素或者为空。快速排序的时间复杂度为O(nlogn),是一种比较高效的排序算法。 下面是快速排序算法的实现代码(使用C++语言): ```cpp #include <iostream> #include <fstream> #include <ctime> #include <cstdlib> using namespace std; void quicksort(int arr[], int left, int right) { if (left >= right) return; // 递归终止条件 int i = left, j = right, pivot = arr[left]; while (i < j) { while (i < j && arr[j] >= pivot) j--; if (i < j) arr[i++] = arr[j]; while (i < j && arr[i] < pivot) i++; if (i < j) arr[j--] = arr[i]; } arr[i] = pivot; quicksort(arr, left, i - 1); quicksort(arr, i + 1, right); } int main() { const int N = 100000; // 元素个数 int arr[N]; srand(time(NULL)); // 用系统时间初始化随机数种子 ofstream fout("input.txt"); // 打开输出文件流 for (int i = 0; i < N; i++) { arr[i] = rand(); // 生成随机数 fout << arr[i] << endl; // 写入文件 } fout.close(); // 关闭输出文件流 clock_t start, finish; start = clock(); // 记录开始时间 quicksort(arr, 0, N - 1); // 快速排序 finish = clock(); // 记录结束时间 cout << "Time used: " << (double)(finish - start) / CLOCKS_PER_SEC << "s" << endl; ofstream fout2("output.txt"); // 打开输出文件流 for (int i = 0; i < N; i++) { fout2 << arr[i] << endl; // 写入文件 } fout2.close(); // 关闭输出文件流 return 0; } ``` 在这个代码中,我们首先生成N个随机数并保存到文件“input.txt”中,然后读入这些随机数并进行快速排序操作,最后将排序结果保存到文件“output.txt”中。同时,我们使用clock()函数来记录排序所用的时间,单位为秒。 需要注意的是,当N的值较大时,排序时间可能会比较长,甚至可能超过几分钟。因此,我们可以考虑使用更为高效的排序算法,如归并排序、堆排序等。同时,我们还可以使用多线程等技术来加速排序过程。 希望这个回答能够帮助您解决问题!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值