[algogeeks] Can anyone tell algorithm for solving sudoku

2012-01-30 Thread Deoki Nandan
*Thanks  Regards
*Deoki Nandan Vishwakarma

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] How to Solve This

2011-10-11 Thread Deoki Nandan
@moderator now is it not voilation of ur group terms ...Another code has
been posted ... What u 'll say now..

On 12 October 2011 03:30, prasad jondhale jondhale.pra...@gmail.com wrote:

 23 has 3 in its unit place but it is not multiple of 111 or 11 or .
 will u pls elaborate on the problem statement?


 On Mon, Oct 10, 2011 at 2:17 PM, anshu mishra 
 anshumishra6...@gmail.comwrote:

 string all1Multiple(int x)
 {
 string s;
 setint mySet;
 mySet.push(0);
 int psize, r=1;
 do
 {
 psize = mySet.size();
 s += '1';
 r = r % x;
 mySet.push(r);
 r = r * 10 + 1;
 } while(mySet.size()  psize);

 if (r != 1) return not Possible;
 return s;

 }

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --

 Thanks  Regards
 Prasad Y.Jondhale
 M.Tech(software engg.),
 Delhi College Of Engineering,
 Main Bawana road,Delhi-110042
 Ph-09540208001

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma
for Computer Science Interview Material see my home page
https://sites.google.com/site/deokinandanmaterials/subject-materialshttps://sites.google.com/site/deokinandanmaterials/

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Give Algo to do this in O(n)

2011-10-10 Thread Deoki Nandan
just find minimum and secon minimum by taking two variables in O(n)

On 10 October 2011 17:57, sandeep nagamalli nsandee...@gmail.com wrote:

 @Shiva: How can min heap be uesd, can you eloborate a bit.

 As far as i see, the best possible is O(nlogn) i.e by sorting and scanning
 over the complete array once.




 On Mon, Oct 10, 2011 at 9:49 AM, shiva@Algo shiv.jays...@gmail.comwrote:

 I think Min heap will do that..


 On Mon, Oct 10, 2011 at 12:37 AM, Ankur Garg ankurga...@gmail.comwrote:

 Given an unsorted array of Integers

 Find 2 nos whose diff is minimum

 Say Array is  4 2 18 19 11 8 5

 Nos are 18 and 19

 Algo shud be of O(n)

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 ThanksRegards:
 -sandeep


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma
IIT ROORKEE
9760340784
for Computer Science Interview Material see my home page
https://sites.google.com/site/deokinandanmaterials/

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] IF ANYONE have c# 2008 or 2010 black book plz mail reply ASAP....

2011-10-03 Thread Deoki Nandan
Thanx in advance

-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] IF ANYONE have c# 2008 or 2010 black book plz mail reply ASAP....

2011-10-03 Thread Deoki Nandan
I have visual studio 2010 I need book

On 4 October 2011 00:05, DIVIJ WADHAWAN divij...@gmail.com wrote:

 Download visual studio 2010

 On Mon, Oct 3, 2011 at 10:19 PM, Deoki Nandan deok...@gmail.com wrote:

 Thanx in advance

 --
 **With Regards
 Deoki Nandan Vishwakarma

 *
 *

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma
IIT ROORKEE
9760340784

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Does anyone haveOperating System Concepts with Java, 8th Edition ebook plz mail me Thanx in advance

2011-10-01 Thread Deoki Nandan
-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Amazon Question

2011-09-26 Thread Deoki Nandan
can you tell how to write code to access log file

On 26 September 2011 09:27, teja bala pawanjalsa.t...@gmail.com wrote:

 do dfs traversal along the two log files and maintain a stack in which push
 the element from 1st log file and if matching id in 2 log file is found pop
 it and display it to user
 but dis 'll take extra stack space ,,,

 another sol.. maintain a bit array for any of the log file and while doing
 BFS traversal if any nth  common id found set the nth bit in bit array and
 thus retrieving the data where the bit is set


 On Mon, Sep 26, 2011 at 1:32 AM, khushboo lohia khushl...@gmail.comwrote:

 Are the customer id's in 2 files in sorted order ?


 On Mon, Sep 26, 2011 at 1:29 AM, Ankur Garg ankurga...@gmail.com wrote:

 You are given 2 log files each having 1 billion entries and each entry
 has a unique customer id.You need to print the records in two files which
 are common.



  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] request of ebook..(Data Structures and algorithms made easy:)

2011-09-26 Thread Deoki Nandan
plz mail me this ebook the given link does not have complete pages only 94
pages can be viewed

On 26 September 2011 05:27, Bhanu Kishore bhanukishor...@gmail.com wrote:


 http://www.scribd.com/doc/50658450/Data-Structures-and-Algorithms-Made-Easy-For-Interviews-Programming-Interview-Questions


 On Sun, Sep 25, 2011 at 9:37 PM, sarath prasath 
 prasathsar...@gmail.comwrote:

 hi every one..
 pls do give me the link if u find or have, about this book..
 title name:Data Structures and Algorithms Made Easy: 700 Data
 Structure and Algorithmic Puzzles
 author:Narasimha Karumanchi
 ISBN-10: 145654988X
 ISBN-13: 978-1456549886
 publisher:careermonk..
 pls do send to this email id...prasathsar...@gmail.com

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Does anyone know how to see solutions submitted on spoj.pl by any user which is accepted

2011-09-26 Thread Deoki Nandan
Thanks in advance

-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Does anyone know how to see solutions submitted on spoj.pl by any user which is accepted

2011-09-26 Thread Deoki Nandan
ok thanks

On 26 September 2011 16:11, shady sinv...@gmail.com wrote:

 you can't... if you are having trouble solving some problem, you can always
 discuss it in spoj forums. spoj.pl/forum

 On Mon, Sep 26, 2011 at 3:54 PM, Deoki Nandan deok...@gmail.com wrote:

 Thanks in advance

 --
 **With Regards
 Deoki Nandan Vishwakarma

 *
 *

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Amazon online test

2011-09-24 Thread Deoki Nandan
shiv narayan:
your answer is correct

On 24 September 2011 11:12, shiv narayan narayan.shiv...@gmail.com wrote:

 what is answer to In how many ways 3 identical coins can be placed in
 5x5 grid so that no
 two coin come in same row and same column ??

 according to me it should be 25*16*9 .


 On Sep 24, 2:19 am, Deoki Nandan deok...@gmail.com wrote:
  1)write code to find first non repeating character in given string
  2)write code for image of binary tree
  3)swap adjacent nodes of given linked list using one pointer
  4)find pair of number in given array whose sum is given
  5)write BST(Binary Search Tree) into file and read from file
  there were 25 MCQ questions as well
  like
  1)In how many ways 3 identical coins can be placed in 5x5 grid so that no
  two coin come in same row and same column
  2)there is an array of length n having numbers from 1-10 . what is the
  probability to choose a number and chosen number is 10
  3)one question on average waiting time of preemptive SJF scheduling
  algorithm
  4)what will happen of child process if parent is killed
  5)print value of present directory using UNIX command (my ans is $pwd |
 echo
  )correct me if I'm wrong
  other I don't remember
 
  On 23 September 2011 17:39, siddharth srivastava akssps...@gmail.com
 wrote:
 
 
 
 
 
 
 
 
 
   Hi
 
   On 23 September 2011 17:29, raju nikutel...@gmail.com wrote:
 
   hi all,
 
   can anyone pls share the questions amazon has been asking in online
   written tests.
 
   Search the archives
   This has been answered many times in the recent days.
 
   Best of Luck
 
   thanks
   raju
 
   --
   You received this message because you are subscribed to the Google
 Groups
   Algorithm Geeks group.
   To post to this group, send email to algogeeks@googlegroups.com.
   To unsubscribe from this group, send email to
   algogeeks+unsubscr...@googlegroups.com.
   For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
   --
   Regards
   Siddharth Srivastava
 
--
   You received this message because you are subscribed to the Google
 Groups
   Algorithm Geeks group.
   To post to this group, send email to algogeeks@googlegroups.com.
   To unsubscribe from this group, send email to
   algogeeks+unsubscr...@googlegroups.com.
   For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
  --
  **With Regards
  Deoki Nandan Vishwakarma
 
  *
  *

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: THANX ALGOGEEKS !!!!!!

2011-09-24 Thread Deoki Nandan
congrats buddy

On 23 September 2011 17:31, siddharth srivastava akssps...@gmail.comwrote:

 Hi

 Congrats

 What did you answer for elevator problem ?


 On 22 September 2011 18:42, saurabh sah.saurab...@gmail.com wrote:

 thanx to all

 I have shared my interview experience at
 http://msidcinterview.blogspot.com/

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards
 Siddharth Srivastava



  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Amazon online test

2011-09-24 Thread Deoki Nandan
MCQ had  options correct have +1 mark and incorrect had -0.25 marks . MCQ
questions were from OS(avg)) ,apti(major) , Networking(avg), Unix(avg),
DBMS(minor),coding(major)..


On 25 September 2011 02:52, dipit grover digo.d.b...@gmail.com wrote:

 25*16*9 / 3! or  5C3 * 5 *4 *3 = 600


 On Sat, Sep 24, 2011 at 6:21 PM, Ankur Garg ankurga...@gmail.com wrote:

 Deoki nandan

 In MCQ there were options as well ?? is it ?

 Also were questions in MCQ only from  coding or OOPS,DBMS,OS etc also are
 part of those ?

 Regards


 On Sat, Sep 24, 2011 at 6:13 PM, Aamir Khan ak4u2...@gmail.com wrote:

 @shiv  :  Correct Answer should be  : 5C3 X 5 X 4 X3 = 600





 Aamir Khan | 3rd Year  | Computer Science  Engineering | IIT Roorkee


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Dipit Grover
 B.Tech in CSE
 IIT Roorkee

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Reverse the string word by word . Can someone tell what is wrong in my code ?

2011-09-24 Thread Deoki Nandan
//Reverse String word by word
// if string is :- I am a good boy
//output string should be :- boy good a am I
#includestdio.h
#includestring.h
void reverse(char *p,char*q)
{
int i;char c;
while(pq)
{
c=*p;*p=*q;*q=c;
p++;
q--;
}
}

void reverseWordByWord(char str[],int len)
{
int i=0,j=0;

 while(ilen)
 {

if((str[i]==' ')||(str[i]=='\t')||(str[i]='\0'))
{
reverse(str[j],str[i-1]);
j=i+1;
}
i++;
 }
}

int main()
{
char A[]=Ram is a good person;
int i;
int len=strlen(A);
reverse(A[0],A[len-1]);
printf(%s\n,A);
reverseWordByWord(A,len);
printf(%s\n,A);
return 0;
}


-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Amazon online test

2011-09-23 Thread Deoki Nandan
1)write code to find first non repeating character in given string
2)write code for image of binary tree
3)swap adjacent nodes of given linked list using one pointer
4)find pair of number in given array whose sum is given
5)write BST(Binary Search Tree) into file and read from file
there were 25 MCQ questions as well
like
1)In how many ways 3 identical coins can be placed in 5x5 grid so that no
two coin come in same row and same column
2)there is an array of length n having numbers from 1-10 . what is the
probability to choose a number and chosen number is 10
3)one question on average waiting time of preemptive SJF scheduling
algorithm
4)what will happen of child process if parent is killed
5)print value of present directory using UNIX command (my ans is $pwd | echo
)correct me if I'm wrong
other I don't remember


On 23 September 2011 17:39, siddharth srivastava akssps...@gmail.comwrote:

 Hi

 On 23 September 2011 17:29, raju nikutel...@gmail.com wrote:

 hi all,

 can anyone pls share the questions amazon has been asking in online
 written tests.


 Search the archives
 This has been answered many times in the recent days.

 Best of Luck


 thanks
 raju

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards
 Siddharth Srivastava



  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Please share amazon online test questions for freshers

2011-09-19 Thread Deoki Nandan
plz share .

On 8 September 2011 19:41, algo geek geeka...@gmail.com wrote:


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Can anyone tell amazon written questions ??? thanx in adv.

2011-09-16 Thread Deoki Nandan
-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Interview Questions

2011-09-15 Thread Deoki Nandan
error due statement int*y; because it tries to allocate another pointer
being uninitialized .It may happen that garbage address which was given to x
is also try to give to y . This makes program crash ...
You can check it by making *y=1000; sttmnt as comment and run after that
comment both statement int*y; and *y=1000; . You will see what happen.

On 16 September 2011 00:07, vikas singh shyguy1...@gmail.com wrote:



 On Thu, Sep 15, 2011 at 11:54 PM, SAMMM somnath.nit...@gmail.com wrote:

 I think u haven't ran the the code or compile it .. It give the output
 as  1000 10 .


 @SAMM : Dude, seg fault on g++


 Check tht ..

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Thanks and Regards
 VIKAS SINGH
 MCA- final year
 NIT DURGAPUR
 email:
  vikas.singh1...@gmail.com
  shyguy1...@gmail.com
 http://smrit.wordpress.com


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Can anyone tell Directi written questions . I'm not asking interview questions... Thanx in advance

2011-09-12 Thread Deoki Nandan
 go for process??
 Semaphores, Synchronization, concurrency problems, Second chance
 algorithm in virtual memory chapter….
 DBMS: Second highest salary… TRY TO USE TOP… I TOLD HIM TWO SOLUTIONS
 ONE WITH TOP AND OTHER WITHOUT TOP … But he emphasized me to use TOP
 first.. So use that…
 He gave me a set of tables and asked me write queries
 Indexing was also an important concept he asked me.. B+ trees
 properties and how used in DB.
 Normalization of my tables in my project….
 Data structures:
 Difference between binary trees,  hash map, Tries.
 A scenario where BST has advantages than hash map without any
 collision.
 How do we avoid collision in hash
 Example of a good hash being used…(I told STL..he sed no that’s a
 different concept.. I then sed…Java hash map…..that was the ryt
 answer… time for getting.. most of the time O(1) and depending on the
 inputs and the things it myt vary accordingly )
 Tries advantages and wen can it be used….and application of it..
 Networks:
 Layers of OSi.. explanation of each layer ☺
 Google.com steps involved
 About DNS
 Testing:
 What do u know abt testing…
 I explained back and white box testing… alpha n beta testin.. and he
 sed..he was  not proficient in it..n stopped…
 Algorithms: (besides the algo round)
 Difference in greedy n dynamic… which is better….
 Kinda company oriented questions:
 advantages and disadvantages of that site…
 wat I know Abt Advertising online…
 all this went for around 1.5 hrs…. ☺ …




 On Sep 11, 3:52 pm, Deoki Nandan deok...@gmail.com wrote:
  --
  **With Regards
  Deoki Nandan Vishwakarma
 
  *
  *

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Can anyone tell Directi written questions . I'm not asking interview questions... Thanx in advance

2011-09-11 Thread Deoki Nandan
-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] sumitabha das unix ebook ?

2011-08-15 Thread Deoki Nandan
here is the link for sumitbha das ebook

http://www.mediafire.com/?ej74twjczauidil
On Tue, Aug 16, 2011 at 9:57 AM, MAC macatad...@gmail.com wrote:

 does anyone has sumitabha das unix ebook for unix ?

 --
 thanks
 --mac

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] sumitabha das unix ebook ?

2011-08-15 Thread Deoki Nandan
but this is not whole book only some portion

On Tue, Aug 16, 2011 at 10:28 AM, Deoki Nandan deok...@gmail.com wrote:

 here is the link for sumitbha das ebook

 http://www.mediafire.com/?ej74twjczauidil

 On Tue, Aug 16, 2011 at 9:57 AM, MAC macatad...@gmail.com wrote:

 does anyone has sumitabha das unix ebook for unix ?

 --
 thanks
 --mac

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 **With Regards
 Deoki Nandan Vishwakarma

 *
 *




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] TRee question...

2011-08-12 Thread Deoki Nandan
if given node has right subtree then its inorder successor will be left most
child of  given node's right child. if given node does not have right child
the its successor will be its parent

On Fri, Aug 12, 2011 at 11:28 AM, Priyanka Goel 
priyankatheinvinci...@gmail.com wrote:

 How to find the in-order successor of a given node in a binary search tree
 where each node has a link to its parent. pl explain logic to solve it..
 ( Pl dnt give solution of doing in order traversal and storing it in
 array.)


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] If anyone have grapeCity interview as well as written questions then please post .. pleasssssssssssseeeeeeeeee..

2011-08-11 Thread Deoki Nandan
Thanks in advance.

-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Do anyone have any questions of grapecity company latest placement papers .. Please share ....

2011-07-30 Thread Deoki Nandan
-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] The Google Resume

2011-07-29 Thread Deoki Nandan
I heartly thanx

On Fri, Jul 29, 2011 at 10:39 PM, !!!p@[/\]@n!!! 
ssrpavan.pavanku...@gmail.com wrote:



 On Wed, Jul 27, 2011 at 12:56 AM, Anand Saha anands...@gmail.com wrote:

 Here: http://goo.gl/pDG5s

 (Yes, that's the correct link)
 --



 On Wed, Jul 27, 2011 at 1:18 PM, malay chakrabarti m1234...@gmail.comwrote:

 plz send it to my maid id also . thanks in advance :)


 On Wed, Jul 27, 2011 at 12:46 PM, Prem Krishna Chettri 
 hprem...@gmail.com wrote:

 Anyone got this book?? pdf.. or URL link is highly appreciated.

 Thx..


 On Tue, Jul 26, 2011 at 8:37 PM, Ankur Garg ankurga...@gmail.comwrote:

 +1
 Me too looking out for the same :(


 On Tue, Jul 26, 2011 at 7:10 PM, Saravanan T mail2sarava...@gmail.com
  wrote:

 +1

 Pls send to my email id as well..


 On Tue, Jul 26, 2011 at 7:09 PM, Akshata Sharma 
 akshatasharm...@gmail.com wrote:

 Anyone having the Google Resume book pdf?

 --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


   --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


   --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


   --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: rotate a matrix NVIDIA question

2011-07-28 Thread Deoki Nandan
there is no specification on complexity . if input matrix is
1 2 3
4 5 6
7 8 9
then after 180 rotation output should be
1 2 3 6  9 8 7 4 5

On Wed, Jul 27, 2011 at 11:34 PM, amit karmakar
amit.codenam...@gmail.comwrote:

 If you meant rotate a 2D matrix by angle 180 of order n x n
 Then you cannot have a O(n) algo, Each of the n^2 elements must be
 accessed so you cannot have anything less than n^2

 On Jul 27, 10:59 pm, Puneet Gautam puneet.nsi...@gmail.com wrote:
  Can anyone give an O(n) solution pls...??
  I think the above code is an O(n^2) solution..
  if i am not wrong...!!!
 
  On 7/27/11, amit amit.codenam...@gmail.com wrote:
 
 
 
   #include cstdio
   #include algorithm
   using namespace std;
 
   const int MX = 1000;
   int n, m;
   int a[MX][MX];
 
   int main() {
   scanf(%d%d, n, m);
   for(int i = 0; i  n; i++)
   for(int j = 0; j  m; j++)
   scanf(%d, a[i][j]);
 
   for(int i = 0; i  n/2; i++)
   for(int j = 0; j  m; j++)
   swap(a[i][j], a[n-i-1][m-j-1]);
   if(n1)
   for(int j = 0; j  m/2; j++)
   swap(a[n/2][j], a[n/2][m-j-1]);
 
   for(int i = 0; i  n; i++) {
   for(int j = 0; j  m; j++)
   printf(%d , a[i][j]);
   printf(\n);
   }
   }
 
   On Jul 27, 7:54 pm, Anika Jain anika.jai...@gmail.com wrote:
   is it lyk for {1,2,3
  4,5,6,
  7,8,9}
   to be {3,2,1,
6,5,4,
9,8,7}??
 
   On Wed, Jul 27, 2011 at 9:37 AM, Deoki Nandan deok...@gmail.com
 wrote:
rotate a 2D matrix by angle 180
 
--
**With Regards
Deoki Nandan Vishwakarma
 
*
*
 
 --
You received this message because you are subscribed to the Google
Groups
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at
   http://groups.google.com/group/algogeeks?hl=en.
 
   --
   You received this message because you are subscribed to the Google
 Groups
   Algorithm Geeks group.
   To post to this group, send email to algogeeks@googlegroups.com.
   To unsubscribe from this group, send email to
   algogeeks+unsubscr...@googlegroups.com.
   For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] rotate a matrix NVIDIA question

2011-07-26 Thread Deoki Nandan
rotate a 2D matrix by angle 180


-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] OUTPUT

2011-07-25 Thread Deoki Nandan
run on gcc compiler it would be
0
1 1

On Mon, Jul 25, 2011 at 10:35 PM, geek forgeek geekhori...@gmail.comwrote:

 1.
 #includestdio.h
 main()
 {
 int i=1;
  printf(\n%d,i^=1%2);
  printf(\n%d %d,i^=1%2,i=1%2);
 return 0;
 }

 output 3 3
 hey shudnt the output be 3 2


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] How can we find size of system stack in C

2011-07-21 Thread Deoki Nandan
-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] what would be the output of following code??

2011-07-16 Thread Deoki Nandan
what about this 
printf(\n%d,printf(%d %d,2,2)printf(%d%d ,2,2));

On Sat, Jul 16, 2011 at 3:04 PM, swetha rahul swetharahu...@gmail.comwrote:

 2


 On Sat, Jul 16, 2011 at 2:51 PM, shiv narayan 
 narayan.shiv...@gmail.comwrote:

 Printf(“%d”,printf(“%d %d”,2,2)  printf(“%d %d ”, 2, 2));

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] what would be the output of following code??

2011-07-16 Thread Deoki Nandan
Give reason not answer . Answer can be found by compiler

On Sun, Jul 17, 2011 at 12:38 AM, Kamakshii Aggarwal
kamakshi...@gmail.comwrote:

 answer to the first should be 2 22 23


 On Sat, Jul 16, 2011 at 5:44 PM, varun pahwa varunpahwa2...@gmail.comwrote:

 ignore my previous result.

 the ans to first should be 2 22 2 0.
 and the ans to second should be.

 2 222
 2
 please correct me if i am wrong.



 On Sat, Jul 16, 2011 at 5:38 PM, varun pahwa varunpahwa2...@gmail.comwrote:

 the ans to first should be 2 2 2 2 0.
 and the and to second should be.
 222 2
 2
 please correct me if i am wrong.

 On Sat, Jul 16, 2011 at 4:57 PM, shady sinv...@gmail.com wrote:

 @ankur that's right :)


 On Sat, Jul 16, 2011 at 3:25 PM, Ankur Khurana 
 ankur.kkhur...@gmail.com wrote:

 answer for first should be
 2 22 23

 and for second
 2 222
 2
 correct me if i am wrong.
 On Sat, Jul 16, 2011 at 3:08 PM, Deoki Nandan deok...@gmail.comwrote:

 what about this 
 printf(\n%d,printf(%d %d,2,2)printf(%d%d ,2,2));


 On Sat, Jul 16, 2011 at 3:04 PM, swetha rahul 
 swetharahu...@gmail.com wrote:

 2


 On Sat, Jul 16, 2011 at 2:51 PM, shiv narayan 
 narayan.shiv...@gmail.com wrote:

 Printf(“%d”,printf(“%d %d”,2,2)  printf(“%d %d ”, 2, 2));

 --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 **With Regards
 Deoki Nandan Vishwakarma

 *
 *

  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Varun Pahwa
 B.Tech (IT)
 7th Sem.
 Indian Institute of Information Technology Allahabad.
 Ph : 09793899112
 Official Email :: rit2008...@iiita.ac.in
 Another Email :: varunpahwa.ii...@gmail.com

 People who fail to plan are those who plan to fail.




 --
 Varun Pahwa
 B.Tech (IT)
 7th Sem.
 Indian Institute of Information Technology Allahabad.
 Ph : 09793899112
 Official Email :: rit2008...@iiita.ac.in
 Another Email :: varunpahwa.ii...@gmail.com

 People who fail to plan are those who plan to fail.

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards,
 Kamakshi
 kamakshi...@gmail.com

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] plz tell how many times loop will execute and why?

2011-07-11 Thread Deoki Nandan
#includeunistd.h
#includestdio.h
#includestdlib.h

int main()
{
int i=0;
pid_t pid;
for( ;i10;i++)
{
pid=fork();
i++;
printf(%d ,pid);
}
}


-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] find output

2011-07-04 Thread Deoki Nandan
when u use post increment operator in an expression and there is sequence
point like || or  then value of post increment counted in expression other
wise not

On Mon, Jul 4, 2011 at 11:24 AM, Navneet Gupta navneetn...@gmail.comwrote:

 I think one rule of thumb for reading pre and post increment operators is

 1) For Pre - Increment the value and use it (++x)
 2) For Post - Use the value and increment it (x++)

 Similar is for pre and post decrement.

 I am not very good at commenting the generality of above but in simple
 usages like below, the above work well for me.

 On Mon, Jul 4, 2011 at 11:21 AM, Anantha Krishnan
 ananthakrishnan@gmail.com wrote:
  y=*x++;
  this line executes like this:
 
  y=*x;
  x=x+1; // post increment
  Regards
  Anantha Krishnan
  On Mon, Jul 4, 2011 at 10:36 AM, amit kumar amitthecoo...@gmail.com
 wrote:
 
  i think d answer sud be 10.
  but it comes out to be 5.
  xplain plz
 
  On Mon, Jul 4, 2011 at 10:30 AM, Sandeep Jain sandeep6...@gmail.com
  wrote:
 
  Apoorve, please explain the reason for this output as well
 
 
  Regards,
  Sandeep Jain
 
 
 
 
  On Mon, Jul 4, 2011 at 1:06 AM, Apoorve Mohan apoorvemo...@gmail.com
  wrote:
 
  5
 
  On Mon, Jul 4, 2011 at 1:01 AM, amit the cool 
 amitthecoo...@gmail.com
  wrote:
 
  int main()
  {
 int a[]={5,10,15,8};
 int *x=a;
 int y;
 y=*x++;
 printf(%d,y);
  }
 
  --
  You received this message because you are subscribed to the Google
  Groups Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 
 
 
  --
  regards
 
  Apoorve Mohan
 
  --
  You received this message because you are subscribed to the Google
  Groups Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
  --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 



 --
 Navneet

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Interview Question

2011-07-03 Thread Deoki Nandan
-Coordinator , DTU WebTeam
 Delhi Technological University

  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Varun Pahwa
 B.Tech (IT)
 7th Sem.
 Indian Institute of Information Technology Allahabad.
 Ph : 09793899112 ,08011820777
 Official Email :: rit2008...@iiita.ac.in
 Another Email :: varunpahwa.ii...@gmail.com

 People who fail to plan are those who plan to fail.

  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Sunny Aggrawal
 B-Tech IV year,CSI
 Indian Institute Of Technology,Roorkee

  --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Sunny Aggrawal
 B-Tech IV year,CSI
 Indian Institute Of Technology,Roorkee

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] array size problem

2011-07-03 Thread Deoki Nandan
WHY?
In C++, you can do something like

const int ArraySize = 100;
int Array[ArraySize];

while in ANSI C, this would be flagged as an error.

-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] pointer increment problem can anyone tell why this output is coming?

2011-07-02 Thread Deoki Nandan
#includeiostream

using namespace std;

int main()
{
int intArray[]={1,2,3};
int *p=intArray;
cout*(p++);
return 0;
}

output :

1


-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] pointer increment problem can anyone tell why this output is coming?

2011-07-02 Thread Deoki Nandan
yes thanx a lot . becoz there is no sequence point and there is post
increment operator is used .


On Sat, Jul 2, 2011 at 10:22 PM, aditya kumar
aditya.kumar130...@gmail.comwrote:

 though you have put bracket over pointer but it will still be defrenced
 first and then the pointer will increemnet to point o next location . its
 post increement dats y.

 On Sat, Jul 2, 2011 at 10:17 PM, Deoki Nandan deok...@gmail.com wrote:

 #includeiostream

 using namespace std;

 int main()
 {
 int intArray[]={1,2,3};
 int *p=intArray;
 cout*(p++);
 return 0;
 }

 output :

 1


 --
 **With Regards
 Deoki Nandan Vishwakarma

 *
 *

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
**With Regards
Deoki Nandan Vishwakarma

*
*

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.