carloscn / structstudy

Leetcode daily trainning by using C/C++/RUST programming.
4 stars 1 forks source link

leetcode1160:拼写单词(find-words-that-can-be-formed-by-characters) #191

Open carloscn opened 1 year ago

carloscn commented 1 year ago

问题描述

给你一份『词汇表』(字符串数组) words 和一张『字母表』(字符串) chars。

假如你可以用 chars 中的『字母』(字符)拼写出 words 中的某个『单词』(字符串),那么我们就认为你掌握了这个单词。

注意:每次拼写(指拼写词汇表中的一个单词)时,chars 中的每个字母都只能用一次。

返回词汇表 words 中你掌握的所有单词的 长度之和。

示例 1:

输入:words = ["cat","bt","hat","tree"], chars = "atach" 输出:6 解释: 可以形成字符串 "cat" 和 "hat",所以答案是 3 + 3 = 6。

示例 2:

输入:words = ["hello","world","leetcode"], chars = "welldonehoneyr" 输出:10 解释: 可以形成字符串 "hello" 和 "world",所以答案是 5 + 5 = 10。  

提示:

1 <= words.length <= 1000 1 <= words[i].length, chars.length <= 100 所有字符串中都仅包含小写英文字母

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/find-words-that-can-be-formed-by-characters

carloscn commented 1 year ago

问题分析

制作一个函数,is_in_chars(a, b),是否a在b中。遍历即可。

fn is_in_str(a: &String, b: &String) -> bool
{
    if a.len() < 1 || b.len() < 1 {
        return false;
    }

    let a_vec:Vec<char> = a.chars().collect();
    let mut b_dup:Vec<char> = b.clone().chars().collect();

    for e in a_vec {
        let p = b_dup.iter().position(|x| *x == e);
        if p == None {
            return false;
        } else {
            b_dup.remove(p.unwrap());
        }
    }

    return true;
}

pub fn count_characters(words: Vec<String>, chars: String) -> i32
{
    let mut ret = 0;

    if words.len() < 1 ||
       chars.len() < 1 {
        return ret;
    }

    for e in &words {
        if is_in_str(e, &chars) {
            ret += e.len() as i32;
        }
    }

    return ret;
}
carloscn commented 1 year ago

code

https://review.gerrithub.io/c/carloscn/structstudy/+/552809 https://github.com/carloscn/structstudy/commit/7f473338189df6baccdea61e0b974db44d036c50