新列表数据类型

发布于 2024-10-07 20:19:44 字数 189 浏览 1 评论 0原文

如何在 ML 中定义新的数据类型,让我们假设 newList,这样它可以包含元素 'a (int、real 等)的列表、嵌套列表,例如: 如果我的类型'a是int,值可能是:[1],[1,[4]],[1,[5],[[5]]]等。 预先感谢您的任何帮助

已编辑 抱歉,示例中没有 1,不同的 int 列表,我删除了它

how can I define new data type in ML, let's assume newList, such that it can consist lists of element 'a (int, real, etc.), nested lists, for example:
if my type 'a is int, values may be: [1], [1,[4]], [1,[5],[[5]]], etc.
thanks in advance for any help

EDITED
sorry without 1 in the example, different lists of int, I deleted it

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

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

发布评论

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

评论(2

岁月静好 2024-10-14 20:19:44

你不能。列表中的所有元素必须属于同一类型。在您的示例中,某些元素是 int 类型,有些是 int list 类型。

您可以创建类似这棵树的东西,但语法不太好用:-)

datatype 'a multiList = Empty
                      | List of 'a multiList list
                      | E of 'a;

val x = List [E 1, List [E 1, List [E 4]], List [E 1, List [E 5]]];

You cannot. All elements in a list must be of the same type. In your example, some of the elements are of int type, and some are int list.

You can create something like this tree, but the syntax is not so nice to use :-)

datatype 'a multiList = Empty
                      | List of 'a multiList list
                      | E of 'a;

val x = List [E 1, List [E 1, List [E 4]], List [E 1, List [E 5]]];
三寸金莲 2024-10-14 20:19:44
datatype 'a multiList = E of 'a
                      | List of 'a multiList list

你的例子是:

List [E 1]

List [E 1, List [E 4]]

List [E 1, List [E 5], List [List [E 5]]]
datatype 'a multiList = E of 'a
                      | List of 'a multiList list

Your examples would be:

List [E 1]

List [E 1, List [E 4]]

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