Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在方案中定义了一个列表: (list (list 1 2) (list 3 4) (list 5 6)) 顶级是第一个子列表吗?
示例中的顶级列表是包含三个元素的列表(1 2) (3 4) (5 6)。顶级不是 (1 2)- 第一个子列表:它是包含该子列表的列表。鉴于示例中的所有列表元素都是子列表,因此顶级列表((1 2) (3 4) (5 6))被视为最左边和最右边的括号。
(1 2) (3 4) (5 6)
(1 2)
((1 2) (3 4) (5 6))
是的。顶层是列表中的元素。其中一些元素恰好是列表本身。在这种情况下,只有一个元素,恰好是一个列表。