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
by · No comments:

Heap sort using STL

Today I will explain heap sort using stl. Sorting an array using heap or making an heap is very easy. Using STL makes it a cake walk. In the following code I have used these function from STL. First is make_heap(). Simply passing the vector inside it makes the heap.  Second is pop_back() which pops the lowest valued or last element from the heap. Third is pop_heap(). It rearranges the elements in the heap range [first,last) in such a way that the part considered a heap is shortened by...
Read More
by · No comments:

Comma Separated Prime Numbers

This is the C++ program I used to generate the first 1 million prime numbers: #include <iostream> #include <array> #include <algorithm> using namespace std; int main() { const unsigned long long num = 1000000; array<bool,num> a; int n; scanf("%d",&n); a.fill(true); a[0] = false; a[1] = false; int m = sqrt(num); for(int i = 2; i<=m; i++){ if(a[i]){ for(int j = i*i; j<num; j+=i){ a[j] = false; } } }      ...
Read More
by · No comments:

Insert at n'th positon, first position, last position, delete at n'th position, reverse, print, print using recursion, reverse print, etc the Linked List

#include <iostream> #include <algorithm> #include <stdio.h> struct node{     int data;     struct node* link; }; // This is the head pointer struct node * head; // This function inserts element at the first position of linked list void insert_first(int element){     struct node * temp  = (node*)malloc(sizeof(struct node));     temp->data = element;     temp->link = head;     head = temp; } // This...
Read More
by · No comments:

Making a Background Service and Parsing some JSON from URL

Making a background service is really easy. We just need to extend Service() class in any of our class to make it a service. Implement its method and you are done. And just one more thing, don't forget to call it from your main activity using Intent. In this post, the JParsingInBackground class which extends Service will continuously run in background and will hit the URL and fetch JSON data every 60 sec. MainActivity.java package com.example.jsoninbackground; import android.app.Activity; import...
Read More