Category: implementation
A Stack is a data structure that satisfies Last-In-First-Out. It can be considered as a pile of plates where you always take the top plate (you put on last). …
Well, most people, when they start programming in C/C++, they would like to print something cool under console. Console, without graphics, is suitable for plain-text, i.e. ASCII code from …
The VBScript/Javascript under Windows is very helpful, which is often used as a daily administration programming language. WSH stands for Window Scripting Host. It is a Microsoft scripting-friendly environment, …
Question: Given an integer (maximum 100), compute the number of distinct ways to split the number using non-negative integer numbers. For example, given 5, there are 7 ways to …
Linux is a powerful Operating System and the C programming language plays a very important role under Linux (compared to Windows). Most of the Linux kernels are written in …