明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1292|回复: 5

[【高飞鸟】] 关于lisp内部数据类型vector的小测试

[复制链接]
发表于 2022-7-13 02:13:43 | 显示全部楼层 |阅读模式
本帖最后由 highflybird 于 2022-7-13 02:14 编辑

起源于baitang36的这个帖子 :
给autolisp增加一种数据类型vector
我把vector和list两种数据类型的读取元素的速度进行了比较。
测试代码:
  1. (defun c:ttt()
  2.   (setq i 0)
  3.   (setq l nil)
  4.   (setq n 100000)
  5.   (repeat n
  6.     (setq l (cons i l))
  7.     (setq i (1+ i))
  8.   )

  9.   (setq v (apply 'vector l))

  10.   ;;最后一个元素
  11.   (uti:bench 10000
  12.     (list
  13.       (list 'vector-elt v (1- n))
  14.       (list 'nth (1- n) l)
  15.     )
  16.   )

  17.   ;;第一个元素
  18.   (uti:bench 10000
  19.     (list
  20.       (list 'vector-elt v 0)
  21.       (list 'nth 0 l)
  22.     )
  23.   )

  24.   ;;中间元素
  25.   (uti:bench 10000
  26.     (list
  27.       (list 'vector-elt v (/ n 2))
  28.       (list 'nth (/ n 2) l)
  29.     )
  30.   )

  31.   (defun forvector (v / i)
  32.     (setq i 0)
  33.     (repeat (vector-length v)
  34.       (vector-elt v i)
  35.       (setq i (1+ i))
  36.     )
  37.   )

  38.   (defun forList (lst / i)
  39.     (setq i 0)
  40.     (repeat (length lst)
  41.       (nth i lst)
  42.       (setq i (1+ i))
  43.     )
  44.   )
  45.   
  46.   ;;平均用时
  47.   (uti:bench 10
  48.     (list
  49.       (list 'forvector v)
  50.       (list 'forlist l)
  51.     )
  52.   )
  53.    
  54.   (princ)
  55. )


测试函数:
  1. (defun UTI:Bench (Times Expressions / s)
  2.   (defun Benchmark (Func times / TIME0 TIME1 Speed Value fName)
  3.     (setq fName (car Func))
  4.     (setq TIME0 (getvar "millisecs"))
  5.     (repeat times
  6.       (setq Value (apply fName (cdr func)))
  7.     )
  8.     (setq TIME1 (getvar "millisecs"))
  9.     (setq TIME1 (- TIME1 TIME0 0.0))
  10.     (setq Speed (/ TIME1 times))
  11.     (list fName times TIME1 Speed Value)
  12.   )
  13.   (BenchCommon Times Expressions)
  14. )
在我的笔记本上测试的结果是:

Statement                Times     Elapse(ms)     Average(ms/time)
------------------------------------------------------------------
VECTOR-ELT               10000     468.0          0.0468
NTH                      10000     3063.0         0.3063
Statement                Times     Elapse(ms)     Average(ms/time)
------------------------------------------------------------------
VECTOR-ELT               10000     782.0          0.0782
NTH                      10000     828.0          0.0828
Statement                Times     Elapse(ms)     Average(ms/time)
------------------------------------------------------------------
VECTOR-ELT               10000     829.0          0.0829
NTH                      10000     2062.0         0.2062
Statement                Times     Elapse(ms)     Average(ms/time)
------------------------------------------------------------------
FORVECTOR                10        4547.0         454.7
FORLIST                  10        126953.0       12695.3

读取单个元素的时候,vector优势不是很明显,但平均值优势比较大。

另外vector有一个优点,就是很容易改变某个元素的值或者替换和交换元素,这个是很方便的,对list类型来说,实在不好办。
所以此处我没做比较。

欢迎大家测试。


评分

参与人数 1明经币 +1 收起 理由
baitang36 + 1 很给力!

查看全部评分

"觉得好,就打赏"
还没有人打赏,支持一下
发表于 2022-7-13 07:18:51 | 显示全部楼层
我看过一篇文章,很长很长,只记得说字典也是很神奇的
;;利用字典去重复
(defun C:w1 (/ *DIC*)
  (or *dic*
      (setq *dic* (vlax-get-or-create-object "scripting.dictionary"))
  )
;;;; Methods supported:
;;;;   Add (2)
;;;;   Exists (1)
;;;;   Items ()
;;;;   Keys ()
;;;;   Remove (1)
;;;;   RemoveAll ()

  (vlax-invoke *dic* 'add "a" "a");=>nil
  (vlax-invoke *dic* 'add "b" "1")
  (vlax-invoke *dic* 'Exists "b");存在=-1,不存在为0
  
  (vlax-invoke *dic* 'Keys);=>("a" "b")
  (vlax-invoke *dic* 'Items);=>("a" "1")
  
  (vlax-invoke *dic* 'Remove "a");=>nil
  (vlax-invoke *dic* 'Keys);=>("b")
  (vlax-invoke *dic* 'RemoveAll);=>nil
  (vlax-invoke *dic* 'Keys);nil
)

;;字典去重复
;;(RE '(1 2 3 3 2 1));=>(1 2 3)
(defun RE (lis / A NEW)
  (or *dic*
      (setq *dic* (vlax-get-or-create-object "scripting.dictionary"))
  )
  (while (setq a (car lis))
    (setq lis (cdr lis))
    (if        (= (vlax-invoke *dic* 'Exists a) 0)
      (vlax-invoke *dic* 'add a "")
    )
  )
  (setq New (vlax-invoke *dic* 'Keys))
  (vlax-invoke *dic* 'RemoveAll)
  New
)
发表于 2022-7-13 07:51:51 | 显示全部楼层
感谢两位大佬的分享!
发表于 2022-7-13 08:45:41 | 显示全部楼层
有一个保留函数 nth<-可以很方便的替换表中的某个元素。
用法是:(syz-nth<- 序号  值  表 )
序号和nth的用法一样,从0开始算
看这里
发表于 2022-7-13 09:18:52 | 显示全部楼层
除了点赞,我啥也不会:D
发表于 2022-7-13 19:41:28 | 显示全部楼层
给高手点赞 + 佩服,给力
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-1-15 22:03 , Processed in 0.196967 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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