java解法

解题步骤:
输入处理:

先读取谜题词 puzzleWords 和字典词 dictionaryWords。
将它们分别拆分为字符串数组,进行后续处理。
匹配规则:

对于每个谜题词,创建一个字符集合 puzzleSet,这个集合包含该词的唯一字符。
然后遍历字典中的每个词,检查该词的字符集合是否与当前谜题词的字符集合相同。
如果匹配,直接返回该字典词。如果遍历完字典词没有找到匹配,则返回 “not found”。
字符集合的使用:

使用 Set 来存储字符,因为集合自动去重,并且无序,使得我们可以忽略字符的顺序和重复。
输出结果:

如果找到匹配的字典词,将其添加到结果列表 matchedWords 中。
如果找不到匹配,添加 “not found”。
最终将所有结果通过逗号连接成字符串并返回。

import java.util.*;

public class Main {
    public static void main(String[] args) {
        // 创建Scanner对象以读取输入
        Scanner scanner = new Scanner(System.in);

        // 读取谜题词和字典词,并用逗号分割成数组
        String[] puzzleWords = scanner.nextLine().split(",");
        String[] dictionaryWords = scanner.nextLine().split(",");

        // 调用matchWordsBySet方法,输出结果
        System.out.println(matchWordsBySet(puzzleWords, dictionaryWords));
    }

    // 用于根据字符集合匹配谜题词与字典词的函数
    public static String matchWordsBySet(String[] puzzleWords, String[] dictionaryWords) {
        List<String> matchedWords = new ArrayList<>(); // 存储匹配的字典词

        // 遍历每个谜题词
        for (String puzzle : puzzleWords) {
            boolean isMatched = false;  // 标记是否找到匹配的字典词
            Set<Character> puzzleSet = getUniqueChars(puzzle);  // 获取谜题词的字符集合

            // 遍历字典中的每个词
            for (String word : dictionaryWords) {
                // 如果谜题词的字符集合和字典词的字符集合相同
                if (puzzleSet.equals(getUniqueChars(word))) {
                    matchedWords.add(word);  // 将匹配的字典词添加到结果列表
                    isMatched = true;  // 设置匹配标志
                    break;  // 找到匹配的字典词后,跳出字典词遍历
                }
            }

            // 如果没有找到匹配的字典词,添加 "not found"
            if (!isMatched) {
                matchedWords.add("not found");
            }
        }

        // 将匹配结果列表转换为以逗号分隔的字符串并返回
        return String.join(",", matchedWords);
    }

    // 获取字符串中唯一字符的集合
    public static Set<Character> getUniqueChars(String word) {
        Set<Character> charSet = new HashSet<>();  // 使用HashSet来存储字符,自动去重
        for (char c : word.toCharArray()) {
            charSet.add(c);  // 将每个字符添加到集合中
        }
        return charSet;  // 返回字符集合
    }
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C++解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

JS解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

注意:

如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏

注:本文转载自blog.csdn.net的CodeClimb的文章"https://blog.csdn.net/CodeClimb/article/details/144773177"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
复制链接

评论记录:

未查询到任何数据!