Category: recursive
September 5, 2014
algorithms, beginner, c / c++, code, code library, math, optimization, programming languages, recursive, tricks
We all know the formula to compute value e (mathematical constant that is the base of the natural logarithm) is e = 1 + 1/1!+ 1/2!+ .....+ 1/n! Now, …
The combination is a frequently-used technique that choose a number of items from a whole data set (sequence is not important). For example, to choose 2 items from 3, …
The LOGO Programming language is fun to learn. It was first designed for teaching children to program as their first programming language. The Turtle Graphics is easy to understand. …
Given two binary trees (defined structure in C++ as follows), check if they are identical (same tree structure and the values to the nodes are also the same): /** …
August 6, 2013
COM/OLE, implementation, interpreter / compiler, javascript, nodejs, programming languages, recursive, string, technical, tools / utilities, tricks, windows
Node.JS (http://nodejs.org/) has been a great Javascript-server side tool). Previous posts on this topic can be found . However, the NodeJS does not inherently support the Win32 COM/OLE techniques …