CodeChrist - This is a personal blog which I write to help follow coders

If you like it, feel free to comment and appreciate the good work


Following are the some features of CodeChrist

  • Easy to navigate and use.
  • You can subscibe for emails
  • CodeChrist is beautiful on every screen size (try resizing your browser!)
by · No comments:

Fibonacci

Fibonacci sequence is a series in the following sequence                                                          It can be easily seen from the above sequence that it is following this recurrence relation :     Making a program of Fibonacci...
Read More
by · No comments:

QuickSort

Defination Quicksort, or partition-exchange sort, is a sorting algorithm which follows divide and conquer algorithm. We will first study the algorithm  then will implement the algorithm in a C++ program. Algorithm Quicksort first divides a large array into two smaller sub-arrays: the low elements and the high elements. Quicksort can then recursively sort the sub-arrays. The steps...
Read More