Posts

Showing posts from March, 2015

Increase internet browsing and surfing speed

Image
Having a good internet connection with proper speed does not mean that you have a good browsing experience. All depends on your browser's configuration. An ill-configured browser may irritate a user with its slow browsing speed. This tutorial will guide you through the required configurations that will help you to gain a better browsing experience. Even a user with slow internet connection will find an appreciable difference in their browsing speed. Requirement: FireFox Browser PC with internet connection Technique: FireFox is one the worlds most popular web browser for a PC. The following guide to increase the browsers' browsing speed is applicable for both broadband and dialup users. The gain or improvement in the browsing speed is achieved by reducing the load time to surf faster and decreasing the browsers' (Firefox) memory usage thus enhancing your browsing experience. Follow the steps below to achieve our aim: 1) Open a firefox browser and type "about:config...

Download B.Tech/B.E Engineering eBooks pdf for free

Image
CyboBytes has recently come up with its free eBooks section.  From this section you can download for free,  eBooks that are mostly required by a Computer Science Engineering student. Click on the topic/subject from below to view all the different Books available for downloading. Download from the links below: Subject Wise: Algorithm Computer Organization and Architechture Data Structures Microprocessor Operating System Theory Of Computation Automata JAVA - Complete Reference to Programming   Complete Series on Visual J++   Mathematics       If you need help in downloading the books, click here .   Book name/author wise classification: Operating System: William Stallings - Operating Systems Internals and Design Principles Galvin 9th Edition - Operating System Principles       Theory Of Computation : KLP Mishra & ...

Insertion Sorting Algorithm in C or C++

Image
Insertion sort is one of the elementary and a simple sorting algorithms in which the fiinal sorted array (or list) is constructed one entry at a time. Insertion sort is widely used in recursive based cases but only when the problem size is small. For higher overhead divide and conquer sorting algorithms, such as quick sort or merge sort algorithms are preferred. Example: Consider an array with the following elements: 75 13 11 2 22 100 43 32 60 The following represents an illustrative example to simulate insertion sorting technique. The subsequent tables represent the position of the elements in the array after each iteration will be sorted in ascending order after applying the insertion sorting algorithm. The cells marked in orange are compared and if required (based on the condition), the swapping is done. The cells mapped in blue are the elements that has been sorted or arranged after the ith iteration. Also See: Linear (Sequential) Search algorithm concept with illustrativ...