Sunday, December 14
Tuesday, October 28
Merge Sort MultiThreading in C#; multithreaded
int[] MergeSort(int[] input, int start, int end)
{
if (end - start < 2)
{
int[] result = new int[1];
result[0] = input[start];
return (result);
...
Monday, October 27
Merge Sort
Please find the source code for merge sort algorithm. I have made this implementation on my own after taking this class https://class.coursera.org/algo-006/lecture/2
I will appreciate any comment that you have.
#include <iostream>
using...
Sunday, October 26
Relaunching with a course on Design and Analysis of Algorithms from Stanford via Coursera
I will be relaunching this blog in sync with my quarter goal. I am working as an Assoc Software Engineer with Bentley Systems, which is a leading company in AEC infrastructure support. I love being there with all the people. As a part of my career...
Sunday, July 13
Saturday, February 1
Windows Store App Created
Update: Bug Fixes have been made. The open sample file is not working as expected, a review on windows store :)
I have created a windows store app but very small bug has been left out. It saves files with extension .docx but those files need to be...
Thursday, January 30
Andrew Solomon @ TED
"I felt a funeral in my brain, and mourners to and fro kept treading, treading till I felt that sense was breaking through. And when they all were seated, a service, like a drum, kept beating, beating, till I felt my mind was going numb. And then...
Setting the Tone New Beginnings
From: Ian Lawton
Spiritual teacherof inner wisdom,
divine love, deeper consciousness,
oneness, peace, and abundance.
Contact Ian: ian@soulseeds.com
I like to get up early in the morning; the stillness is
contagious and fills me with...
Career Choices
I am often asked for help about career choices from aspiring
entrepreneurs, professionals or students. I try my best to share my
insights on career choices but the following advice that I received from
Mr. Richard Branson, sums it all up for everyone...
Tuesday, January 7
ARROW KEYS IN C++
WANT TO INCLUDE ARROW KEYS IN YOUR C++ PROGRAM !!! JUST copy this code in your compiler, execute and press arrow keys.
..
this code is only for hint on how to use arrow keys oin your c++ program.....
REMEMBER ASCII codes of arrow keys
1. Up key =...