On Sunday, 7 October 2018 at 20:27:47 UTC, eastanon wrote:
Are there reading resources on Data structures and Algorithms in D? There are several such books in the C/C++ and Java world and many senior/experienced D users might have come across them in C. But for people who join D after reading Ali's book, a data structures and algorithms book in D would be a great next step. i.e. a book that uses D's idioms and best practices. Any such material in development or recommended blog posts?

Data structures and algorithms are somewhat abstract from the language, I think. See e.g., Introduction to Algorithms; Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest

Nevertheless, some references of applications are already mentioned above. The books are very cool, by the way.

There are also some online references, which are not mentioned yet e.g.,
https://p0nce.github.io/d-idioms/
http://rosettacode.org/wiki/Category:D

The standard library itself:
https://github.com/dlang/phobos

And the package library build by enthusiasts at
https://code.dlang.org

And last but not least, this forum. Many ideas emerge here from the collaborative work of experts from different areas. They are ready to assist in many questions at any time of the day.

Reply via email to