在 Haskell 中制作回文

发布于 2024-10-22 03:32:47 字数 90 浏览 2 评论 0原文

我正在尝试编写一个函数,该函数接受一个字符串并从中生成一个回文。

例如,ace 变为 aceeca

I am trying to write a function that takes in a string and makes a palindrome out of it.

For example, ace becomes aceeca.

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

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

发布评论

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

评论(2

偏闹i 2024-10-29 03:32:47

很简单,只需将反转的字符串连接到其自身上即可。

palindrome s = s ++ reverse s

++ 是列表串联函数。

让我向您指出真实世界的 Haskell。如果您刚刚开始学习该语言,这是一本很好的书。

Pretty easy, just concatenate the reversed string onto itself.

palindrome s = s ++ reverse s

++ is the list concatenation function.

Let me point you toward Real World Haskell. It's a good book for learning the language if you're just getting started.

巴黎夜雨 2024-10-29 03:32:47
palindrome [] = []
palindrome (x:xs) = append (x:(palindrome xs)) x
  where append (x:xs) y = x:(append xs y)
        append [] y = [y]
palindrome [] = []
palindrome (x:xs) = append (x:(palindrome xs)) x
  where append (x:xs) y = x:(append xs y)
        append [] y = [y]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文