Tag: programming
Here is another simple example that shows how easy and powerful the Processing is. Adjust frameRate (frames per second) to make the animation faster or slower). // https://helloacm.com/processing/ int per = …
PHP (PHP Hypertext Processor) is well known and very popular today. Almost more than 80% of alexa top 100 websites are based on PHP. PHP is a scripting language …
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 …
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 …