Published on Thu, 12 Jun 2008 15:55:30 -0400 Read: 697 times
Template based B+ Tree
B+ Tree is a type of tree, which represents sorted data in a way that allows for efficient insertion, retrieval and removal of records, each of which is identified by a key. It is a dynamic, multilevel index, with maximum and minimum bounds on the number of keys in each index segment (usually called a 'block' or 'node').... Read Article.
Published on Wed, 21 May 2008 08:09:23 -0400 Read: 125 times
The article describes C++ coding styles and practices to be followed to develop robust and reliable code that is easily comprehended and maintained by other developers.... Read Article.
Published on Wed, 21 May 2008 08:09:22 -0400 Read: 78 times
The article demonstrating inner product operation performed with shorts, ints, floats and doubles with CPU/FPU and SSE for comparison.... Read Article.
Published on Wed, 21 May 2008 08:09:18 -0400 Read: 97 times
Data flow analysis enables early and effortless detection of critical runtime errors like exceptions, resource leaks, and security vulnerabilities. It can also check if exceptions reported from automated unit testing are ?real bugs.?... Read Article.
Published on Wed, 21 May 2008 08:09:15 -0400 Read: 90 times
The article demonstrating backpropagation artificial neural network console application with validation and test sets for performance estimation using uneven distribution metrics.... Read Article.
Published on Fri, 09 May 2008 08:04:28 -0400 Read: 54 times
In this article we will look into reading data from an unmanaged array of bytes into a managed data structure. We will use multiple approaches to optimize the process.... Read Article.