March 30, 2014
16 bit, 6502, 8 bit, assembly language, code, code library, compiler, console, debug, famicom, hardware, implementation, interpreter / compiler, Nintendo Entertainment System, programming languages
On 16-bit MSDOS, you can use debug.exe (16-bit debugger) to write tiny (or small) .COM binary programs. There is no compilation process, you write the assembly code and the …
The Dynamic Programming DP is one of the most-used approach to solve problems that satisfy the overlapping sub-problems and the optimal substructures. The simplest example is to compute Fibonacci …
February 26, 2014
c / c++, code, code library, floating point, implementation, linux, math, programming languages, tools / utilities, windows, windows command shell
The famous quote for Linux Shell is ‘Where there is a shell, there is a way’. It reflects that the Linux Shell (e.g. BASH) is so powerful that almost …
February 18, 2014
algorithms, beginner, brainfuck, c / c++, code, code library, data structure, implementation, programming languages, string
The problem is from LeetCode Online Judge . The puzzle appears to be the most-favourite interview questions. It asks you to implement an algorithm to check if a given …
February 15, 2014
16 bit, 32 bit, 64 bit, beginner, c / c++, code, code library, console, implementation, programming languages
In the DOS era, where 16-bit applications are dominant, the DOS compilers such as Turbo C, Borland Pascal provide many utilities/methods/functions related to keyboard and screen. To check a …