Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Bucket Sort in C and C++

Here you will get program for bucket sort in C and C++. In bucket sort algorithm the array elements are distributed into a number of buckets. Then each bucket sorted individually either using any other sorting algorithm or by recursively applying bucket sort. Take example shown in below image. Elements are distributed among buckets Then, …

Bucket Sort in C and C++ Read More »

Lexical Analyzer in C and C++

Here you will get the program to implement lexical analyzer in C and C++. The compiler is responsible for converting high-level language into machine language. There are several phases involved in this and lexical analysis is the first phase. A lexical analyzer reads the characters from the source code and converts them into tokens. Different …

Lexical Analyzer in C and C++ Read More »

Checksum Program in C and C++

Here you will get checksum program in C and C++. A checksum is a error detection method in Data Communication. It is used for errors which may have been introduced during transmission or storage. It is usually applied to an installation file after it is received from the download server. The actual procedure which yields …

Checksum Program in C and C++ Read More »