将所有字谜组合在一起

发布于 2024-09-17 08:47:01 字数 78 浏览 3 评论 0原文

问题陈述: 给定一组 k 个字符串,每个字符串长度为 n。您必须一起输出这组字谜词。字谜词就像 atm - mat 、 like-kile 。

Problem statement:
You are given a set of k strings, each length n. You have to output the group of anagrams together. Anagrams are like e.g atm - mat , like-kile.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

做个ˇ局外人 2024-09-24 08:47:01

只需对单词的字母进行排序即可获得特定于字谜的签名。例如,在Python中,

sig = ''.join(sorted(word))

创建一个以sig为键的dict,其值为具有该签名的单词列表(defaultdict(list) 对此效果很好)。当然,您可以使用任何具有排序功能的语言以及其值可以是列表或向量的关联数组来完成此操作;-)。

Just sort the word's letters to obtain a signature that's anagram-specific. E.g., in Python,

sig = ''.join(sorted(word))

and make a dict with sig as the key and the value being a list of words with that signature (defaultdict(list) works well for this). Of course, you can do it in any language with sorting abilities, and associative arrays whose values can be lists or vectors;-).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文