明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 929|回复: 0

按索引删除列表的项

[复制链接]
发表于 2017-8-16 17:12:33 | 显示全部楼层 |阅读模式
本帖最后由 jpg102329 于 2017-8-21 08:10 编辑

  1. ;22:35 2017/7/20
  2. ;【管理员】大海<tryhi@sina.cn> 22:48:12
  3. (defun remove-dh (lst n / a i k lst1)
  4. (setq i -1 k t)
  5. (while(and(setq a(car lst))k)
  6. (setq
  7. i(1+ i)
  8. lst(cdr lst)
  9. )
  10. (if (= i n)(setq k nil)(setq lst1(cons a lst1)))
  11. )
  12. (append (reverse lst1)lst)
  13. )



  14. ;22:35 2017/7/20
  15. 【观音】落魄山人<vicwjb@qq.com> 22:33:30
  16. (defun remove (lst i / len m)
  17.   (setq len (length lst))
  18.   (cond
  19.     ((> i (fix (/ len 2)))
  20.      (reverse (vl-remove-if '(lambda (x) (= i (setq len (1- len)))) (reverse lst)))
  21.     )
  22.     (t
  23.      (setq m -1)
  24.      (vl-remove-if '(lambda (x) (= i (setq m (1+ m)))) lst)
  25.     )
  26.   )
  27. )  试试这个  
  28. ;22:33 2017/7/20
  29. 【观音】落魄山人<vicwjb@qq.com> 22:32:18
  30. (defun BF-List-RemoveIndex (lst index / i)
  31.   (setq i -1)
  32.   (vl-remove-if '(lambda (x) (= (setq i (1+ i)) index)) lst)
  33. )
  34. ;22:30 2017/7/20
  35. 【观音】落魄山人<vicwjb@qq.com> 22:08:45
  36. ;;;名称:BF-List-RemoveIndex
  37. ;;;说明:按索引删除列表的项,leemac
  38. ;;;参数:lst:列表
  39. ;;;参数:index:索引,从0开始
  40. ;;;返回:删除索引项之后的列表
  41. ;;;示例BF-List-RemoveIndex '(0 1 2 3) 1)
  42. (defun BF-List-RemoveIndex (lst index / i)
  43.   (setq i -1)
  44.   (vl-remove-if '(lambda (x) (= (setq i (1+ i)) index)) lst)
  45. );我是这么写的


<以上内容出自《大海语录》不代表本人观点>
欢迎加入通信管线设计技术交流群655280537,通信管线规划设计技术、资源交流群,CAD底图交换、付费教程免费获取、交流经验、互相学习,共同进步!



您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 10:31 , Processed in 0.171497 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表