How to get all dictionary words from a list of letters?(如何从字母列表中获取词典中的所有单词?)
本文介绍了如何从字母列表中获取词典中的所有单词?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个输入字符串,如"fairy"
,我需要从它获取可以组成的英语单词。下面是一个例子:
5:仙女
4:FRAY、AIRY、FIRE、FIAR
3:Fay、Fry、Arf、ary、Far等
我有std::unordered_set<std::string>
词典单词,所以我可以很容易地迭代它。我以前创建过排列,如下所示:
std::unordered_set<std::string> permutations;
// Finds every permutation (non-duplicate arrangement of letters)
std::sort(letters.begin(), letters.end());
do {
// Check if the word is a valid dictionary word first
permutations.insert(letters);
} while (std::next_permutation(letters.begin(), letters.end()));
这对于长度为5非常合适。我可以检查每个letters
是否匹配,最后得到"fairy"
,这是从这些字母中可以找到的唯一5个字母的单词。
我如何才能找到较小长度的单词?我猜它也与排列有关,但我不确定如何实现它。
推荐答案
您可以保留一个辅助数据结构,并添加一个特殊符号来标记行尾:
#include <algorithm>
#include <string>
#include <set>
#include <list>
#include <iostream>
int main()
{
std::list<int> l = {-1, 0 ,1, 2, 3, 4};
std::string s = "fairy";
std::set<std::string> words;
do {
std::string temp = "";
for (auto e : l)
if (e != -1) temp += s[e];
else break;
words.insert(temp);
} while(std::next_permutation(l.begin(), l.end()));
}
这里的特殊符号是-1
这篇关于如何从字母列表中获取词典中的所有单词?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何从字母列表中获取词典中的所有单词?
基础教程推荐
猜你喜欢
- C++,'if' 表达式中的变量声明 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01