Category: tutorial
The Javascript has the includes function that can be used to test if a given array or string contains an element or character. For example: .includes("a"); true .includes("aa"); false …
OpenMP (www.openmp.org) makes writing the Multithreading code in C/C++ so easy. OpenMP is cross-platform can normally ben seen as an extenstion to the C/C++, Fortran Compiler i.e. OpenMP hooks …
The Model-View-Controller (MVC) is not a technology, but a concept in software design/engineering. The MVC consists of three components, the Model, the View and the Controller, as illustrated in …
The COM (Component Object Model) has been existent on Windows platform e.g. Win98 for decades. It is powerful technology that allows different programming languages to easily invoke the library …
A Sparse Matrix (SM) is a popular data structure that is used to stored two-dimension Matrix when the total the empty/zero elements are the majority in the matrix. For …