Algorithms or data structure books in a schema

There are very good books on data structures and / or algorithms with languages ​​such as C, C ++, or Python. A particular example is "Data Structures Using C and C ++ from Yedidyah Langsam, Moshe J. Augenstein and Aaron M. Tenenbaum."

Are there books on data structures and / or algorithms in the circuit programming language in the same vein?

+4
source share
2 answers

Yes, the structure and interpretation of computer programs , better known as SICP.

+1
source

To add to Chris Jester-Young's answer, you are also SICP like lecture lectures taught by the authors of the book. It's worth it! Since then, the Scheme standard has changed a bit, but if you use DrRacket, you may be interested in the SICP compatibility module , which is very easy to install.

Purely functional data structures (PDFs), also available as books in bookstores. This is a language agnostic and book code in ML, but he says that it can be easily ported to a rigorous evaluation language such as Scheme.

+4
source

Source: https://habr.com/ru/post/1497363/


All Articles