用 Erlang 从列表中分割几个头的最佳方法?

发布于 2024-09-11 00:51:10 字数 558 浏览 5 评论 0原文

所以,与 Erlang 一起工作真的很愉快,但是我偶尔会遇到一个问题,我想知道是否有更好的方法来解决。我经常发现自己需要从列表中拆分多个项目。将列表拆分为 Head 和 Tail 的语法非常简单,但是当有多个项目时该怎么办呢?

1> List = [1,2,3,4,5].
[1,2,3,4,5]
2> [Head | Tail] = List.
[1,2,3,4,5]
3> Head.
1
4> Tail.
[2,3,4,5]

除了内联分割两次之外,是否有更好的方法来获取列表的前两个元素?

1> List = [1,2,3,4,5].
[1,2,3,4,5]
2> [Head1 | [Head2 | Tail]] = List.
[1,2,3,4,5]
3> Head1.
1
4> Head2.
2
5> Tail.
[3,4,5]

我知道这也可以通过编写从列表中递归分割后续头的函数来简化,但我想知道是否有更简单的内联方法来做到这一点(或者事实上,递归后续分割函数是最佳实践完成此任务的方法)?谢谢!

So, Erlang is a real joy to work with, but there's one problem I run into occasionally, that I'm wondering if there is a nicer way to solve. Often, I find myself needing to split several items from a list. The syntax for splitting a list into a Head and Tail is straight forward enough, but what about when there are multiple items.

1> List = [1,2,3,4,5].
[1,2,3,4,5]
2> [Head | Tail] = List.
[1,2,3,4,5]
3> Head.
1
4> Tail.
[2,3,4,5]

Is there a nicer way to get, say, the first two elements of a list other than splitting twice inline?

1> List = [1,2,3,4,5].
[1,2,3,4,5]
2> [Head1 | [Head2 | Tail]] = List.
[1,2,3,4,5]
3> Head1.
1
4> Head2.
2
5> Tail.
[3,4,5]

I know that this can also be simplified by writing functions that recursively split subsequent heads from a list, but I'm wondering if there is a simpler inline way to do it (or if in fact, the recursive subsequent split functions are the best practices way to accomplish this task)? Thanks!

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

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

发布评论

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

评论(1

所有深爱都是秘密 2024-09-18 00:51:10
[X1, X2 | Tail] = List.
[X1, X2 | Tail] = List.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文