116 101 92 29 25 17 10 9 8 7 7 7 5 5 4 4 4 4 3 3 3 3 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 基础 中的文章

elisp数据结构vector | elisp类型

Emacs-lisp vector数据类型是一个有序的值序列,具有固定数量的元素。它实现了数组数据结构。 vector是一个有序的值序列。 任何元素都可以是任何类型、混合的。 元素的值可……

阅读全文

elisp数据结构hash | elisp类型

hash在高级语言中有普遍的实现,elisp也不例外。 hash创建 hash读取 hash写入 hash遍历 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ;; 创建 (setq xx(make-hash-table :test 'equal))……

阅读全文

letcode基础题

題目描述: 不清楚的第一个人的解法: 于是使用到智能AI解答,发现这个解法很简洁……

阅读全文

Emacs Lip: 代码注释

注释是被 emacs lisp 忽略的文本。 通常用于注释代码、文档或版权信息。 注释语法从一个分号开始到行尾。 没有其他语法。 1 2 3 4 5 6 7 8 9 10 11 12 ;; this is a comment (+ 1 2) ; result is 3 ;; by emacs convention, ;;……

阅读全文

elisp结构Association List | elisp类型

Association List (aka alist) is a value type in Emacs Lisp. Association List is a List , where each element is a Cons Pair , like this (cons key val) In each cons pair, the key and value can be any value type. Items in Association List can have duplicate keys, and order is maintained. 创建 1 2 3 4 5 6 7 8 9 10 11 Tip: dot notation for cons when creating a association list, For example……

阅读全文