Articles

Code

These code were proposed only for learning purposes.
以下代码仅用于学习用途。

Scheme / Racket

Note: you may need DrRacket to open these files,
since some of them contain DrRacket style comment box.

  • Scheme - the Art of Programming

    • Vector

      阵列/数组是在各种编程语言中最常见的数据结构之一 以下代码所呈现的Vector以racket自带的vector结构实现。
    • Matrix

      矩阵是一种数据结构,在许多语言中以"多位数组/阵列"的形象呈现。以下代码中的矩阵是通过vector实现的。