明经CAD社区's Archiver
社区
›
AutoLISP/Visual LISP 编程技术
› 查找重复项有没有更快的方法?
dcl1214
发表于 2021-6-13 01:11:26
本主题需向作者支付
3 个明经币
才能浏览
购买主题
mahuan1279
发表于 2021-6-16 14:33:12
data数据类型是啥?
vitalgg
发表于 2021-6-23 15:38:29
(defun list:remove-duplicates (lst)
"删除列表中重复的原子。"
(if lst (cons (car lst) (list:remove-duplicates (vl-remove (car lst) lst)))))
页:
[1]
查看完整版本:
查找重复项有没有更快的方法?