函数式编程功能
如何编写两个列表或集合的并集的函数程序?
How to write a functional program for the union of two lists or sets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何编写两个列表或集合的并集的函数程序?
How to write a functional program for the union of two lists or sets?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这取决于语言,但通常会有一个递归解决方案,涉及遍历标识共享元素的集合。
例如,在 Haskell 中的原生
Data.Set
类型,或者更简单地说,对于列表:
It depends on the language, but generally, there'll be a recursive solution involving traversal of the sets identifying shared elements.
E.g. in Haskell on the native
Data.Set
type,Or more simply, for lists:
这听起来像是一个家庭作业问题,但我会咬牙切齿。在Python中:
This sounds like a homework question, but I'll bite. In Python: