Core… Install C/C++ core 26 Aug 201930 Dec 2022 Installation (via APT) sudo apt update sudo apt install build-essential It is highly recommended that you install valgrind for debugging and memory leak detection and that you install an IDE.…
Libraries… Install LAPACKE 4 Nov 20171 Aug 2020 Prerequisites: C/C++ compiler (install link) Summary of what you are going to install: BLASLapackLapacke Summary of the commands: sudo apt update sudo apt install liblapack3 sudo apt install liblapack-dev sudo…
Books… Data Structures and Algorithm Analysis in C++ 4 Nov 20172 Oct 2019 Data Structures and Algorithm Analysis in C++, International Edition A little bit overpriced but an excellent read. Lots of examples using modern C++. The book covers almost any data structure…
Books… Design Patterns 1 Nov 20172 Oct 2019 Design patterns : elements of reusable object-oriented software A great book for design patterns, but it is advanced and hard to read. It is recommended as a follow up once…
Books… Absolute C++ 1 Oct 20172 Oct 2019 Absolute C++, Global Edition Continue reading "Absolute C++"
Books… C++ Primer 1 Oct 20172 Oct 2019 C++ Primer C++ Primer is one of the best books to start with if you are interested in learning C++, and the first that I would recommend for a beginner.…
Books… C Programming: A Modern Approach 1 Oct 20172 Oct 2019 C Programming: A Modern Approach C Programming: A Modern approach is one of the best books to start with, and the first one I recommend for C. It goes back…