Friday, January 24, 2014

Download Links TO New Network HOSTS

AIRTEL NEW HOSTS



Relaince FEb 2014




Reliance Config by waywithbey




Reliance Video On demand Host




Speed Capping Solution For airtel




TATA DOCOMO WHATSAPP REAL HOST



Thursday, January 23, 2014

Advanced Systemcare-Boost the Speed Of your System

Download from  Here
All Instructions Are given Within the archieve.

Enhance your C++ logics and algorithms

Using the Built-in Sort and Search Functions in C++

Being able to implement your own versions of quicksort (as well as other sorts that might be suitable for the occasion) and binary search algorithms is important (you can check my own implementations here). However, when you are participating in programming contests and challenges the last thing you want to worry about is whether or […]

Generating Permutations in C++

Suppose you have the following set: {0,1,2}. How do you generate all the possible permutations of such set? One possible approach is to use recursion. First we need to break the problem into smaller sub-problems. This could be done by splitting the set into two parts. We keep the right side fixed, and then find […]

Powerset Algorithm in C++

A powerset of a given set is the combination of all subsets, including the empty subset and the set itself. Suppose we have the following set: {1,2,3}. Its powerset would be: {1,2,3} {1,2} {1,3} {2,3} {1} {2} {3} Creating an algorithm to generate a powerset is not trivial. The first idea you can use is […]