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
这篇关于如何从字母列表中获取词典中的所有单词?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何从字母列表中获取词典中的所有单词?
猜你喜欢
- 如何提取 __VA_ARGS__? 2022-01-01
- GDB 不显示函数名 2022-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- DoEvents 等效于 C++? 2021-01-01
- XML Schema 到 C++ 类 2022-01-01
- 将 hdc 内容复制到位图 2022-09-04
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01