在列表Netlogo中查找单个副本

时间:2015-06-15 20:54:41

标签: list duplicates netlogo

我试图在列表的子列表中找到重复项,如果我有这个列表

let listA [[-9 2] [-9 1] [-9 0][-9 -1][-9 -2][-9 -3][-9 -4][-8 0][-9 0]] 

这是一个限制,这个列表只能有一个可以重复的子列表,在这种情况下是[-9 0]我想将这两个元素保存在2个变量中,例如:

let element-x item 0 ? 
let element-y item 1 ?

但我实际上并不知道如果列表中的两个子列表具有相同的元素,那么如何将它们相互比较。

在获取这些变量(element-x element-y)之后,我必须删除listA中包含其中一个变量-9或0的每个子列表,并将剩余的坐标保存在新列表中(list-cordinates)

我已经通过在下面的代码中将这些变量(重复的子列表)作为常量(用于测试目的)来完成此操作:

    globals [

  list-cordinates
  element-x
  element-y
]
 set element-x -9    
 set element-y  0

 foreach listA [

  if item 0 ? != element-x AND item 1 ? != element-y[

 let x item 0 ?
 let y item 1 ?

 set list-cordinates lput( list x y ) list-cordinates

 ]


]  

现在我只需要这些变量不是常量,而是listA的重复子列表中的2个项目。

谢谢

1 个答案:

答案 0 :(得分:0)

这很快且很脏,但是find-dup应该返回列表中的第一个重复项(在本例中为子列表)。

to go
  let listA [[-9 2] [-9 1] [-9 0][-9 -1][-9 -2][-9 -3][-9 -4][-8 0][-9 0]] 
  show find-dup listA
end

to-report find-dup [ c ]
  ;returns the first duplicated item, or false if no duplicates
  if length c = 1 [ report false ] ;we've run out of list before a dup is found
  ;compare the first element of the list to the rest
  let a first c          
  let b butfirst c
  ;does the first element match any remaining element?
  foreach b [
    if (a = ?) [report a ]  ;found a duplicate, report it.
  ]
  ;no matches. test the remainder of the list for a duplicate
  report find-dup but-first b  
end

其余的代码应该从那里开始。