Tag: tutorial
Programming in Processing Script is fun, powerful and easy. In , we made a simple random animation using just a few lines of code, which shows how capable that …
In , random coloured squares are drawn on console using C++ based on CodePage 437. It is a pure native application and the compiled binary size is just around …
Raspberry PI has a SD card slot. It boots from the SD card, which can be supported up to 32GB. (For bigger size, the SD card has to be …
VBScript is a handy language to do some daily jobs in Windows. The VBScript language origins from BASIC, which can be dated back in the MSDOS era. The VBScript …
May 7, 2014
algorithms, code, code library, data structure, implementation, programming languages, sorting, VBA, vbscript, windows, windows scripting host
Among the simple sorting algorithms, the insertion sorting algorithm is my favourite. Insertion sort is simple to implement and gives an average quadratic O(n2) running time, like other simple …