gpt4 book ai didi

c# - 在 C# 中实现 Anagram 函数

转载 作者:太空狗 更新时间:2023-10-29 22:14:42 27 4
gpt4 key购买 nike

Possible Duplicate:
What is an easy way to tell if a list of words are anagrams of each other?

在 C# 中编写函数的最佳方式(性能范围)是什么,该函数接受两个字符串并在字符串彼此为变位词时返回 true,否则返回 false。字谜的例子是:

abet beat beta bate
abides biased

anagrams link

在实现这个的时候,是不是每个字符串都有空格?

任何想法将不胜感激!

最佳答案

使用 LINQ 的简单(幼稚?)方法:

"abides".OrderBy(c=>c).SequenceEqual("biased".OrderBy(c=>c))

关于c# - 在 C# 中实现 Anagram 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7072868/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com