创建可变长度的链表
我有一个 ((a)(b)(f(x)))
列表。我想要得到的是((a)(b)(f(x1))(a)(b)(f(x2))(a)(b)(f(x3)的链表结构))))
。也就是说,根据用户的要求重复附加列表,并且变量的值是变化的,使得其值将彼此唯一。我如何在 LISP 中实现它?
I have a list of ((a)(b)(f(x)))
. What i would like to get is a linked list structure of((a)(b)(f(x1))(a)(b)(f(x2))(a)(b)(f(x3))))
. That is, repeatively appending the list the on the basis of requirement of the user and the value of the variable is chaning so that its value will be unique from each other. How can i implement it in LISP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)