[algogeeks] its very urgent

2011-08-11 Thread manvir siyo
please tell me about the pattern of writen  test for DE shaw ..

and also tell me on which thing they focus more..
please help me.. i really need ..
thnk u ..

-- 
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] Fwd: its very urgent

2011-08-11 Thread manvir siyo
-- Forwarded message --
From: manvir siyo manis...@gmail.com
Date: Thu, Aug 11, 2011 at 10:54 PM
Subject: its very urgent
To: algogeeks@googlegroups.com


please tell me about the pattern of writen  test for DE shaw ..

and also tell me on which thing they focus more..
please help me.. i really need ..
thnk u ..

-- 
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] Hash Table Objective Question

2011-08-11 Thread manvir siyo
please help me.. can u tell me regarding written test of De shaw company..
please if anyone knows please tell me.. please

On Thu, Aug 11, 2011 at 10:58 PM, paul suganthan
paul.sugant...@gmail.comwrote:

 if the hash function evaluates to 3 or 4 , collision occurs and by linear
 probing they are put into 5(nearest free entry). Also 5 and 6 are empty.

 But if the hash value points to 7,8,9,10 or 1 , they will be put into
 2(nearest free entry).


 On Thu, Aug 11, 2011 at 10:53 PM, Mani Bharathi 
 manibharat...@gmail.comwrote:

 how do u say that they will lead to 2?

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/algogeeks/-/d9eo_cbjCvwJ.

 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.



Re: [algogeeks] reverse

2011-08-11 Thread manvir siyo
please tell me about the pattern of writen  test for DE shaw ..

and also tell me on which thing they focus more..
please help me.. i really need ..
thnk u ..

On Thu, Aug 11, 2011 at 11:01 PM, Naren s sweetna...@gmail.com wrote:

 not 100% sure if this is what you are asking for but here it goes.

 you have a number  (binary) and you want  (binary)?

 you want to use the xor operator ^

 value = 0xf0; // binary
 printf(before %d\n);
 value ^= 0xff; // binary
 printf(after%d\n);


 output:
 before 240
 after 15

 240 in binary is 
 15 in binary is 

 http://wiki.answers.com/Q/How_do_you_reverse_a_number_using_bitwise_operator#ixzz1Uk5fUjai


 On Thu, Aug 11, 2011 at 10:43 PM, Rajeshwar Patra 
 rajeshwarpa...@gmail.com wrote:

 how can we reverse a number using bitwise operators?

 --
 *Rajeshwar Patra,*
 *MCA final year,*
 *Nit Durgapur*

 --
 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.




 --
 *Narayanan S,*
 B.E., C.S.E., (final year),
 College Of Engineering Guindy,
 Anna University,
 Chennai-25.

 --
 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.



Re: [algogeeks] reverse

2011-08-11 Thread manvir siyo
please tell me abt the pattern of de shaw company..
please

On Thu, Aug 11, 2011 at 11:06 PM, paul suganthan
paul.sugant...@gmail.comwrote:

 You are trying to reverse the bits. not the number.
 This will not work for bits also!

 If given input is 1101 0011
 you will get
 0010 1100

 On Thu, Aug 11, 2011 at 11:01 PM, Naren s sweetna...@gmail.com wrote:

 not 100% sure if this is what you are asking for but here it goes.

 you have a number  (binary) and you want  (binary)?

 you want to use the xor operator ^

 value = 0xf0; // binary
 printf(before %d\n);
 value ^= 0xff; // binary
 printf(after%d\n);


 output:
 before 240
 after 15

 240 in binary is 
 15 in binary is 

 http://wiki.answers.com/Q/How_do_you_reverse_a_number_using_bitwise_operator#ixzz1Uk5fUjai


 On Thu, Aug 11, 2011 at 10:43 PM, Rajeshwar Patra 
 rajeshwarpa...@gmail.com wrote:

 how can we reverse a number using bitwise operators?

 --
 *Rajeshwar Patra,*
 *MCA final year,*
 *Nit Durgapur*

  --
 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.




 --
 *Narayanan S,*
 B.E., C.S.E., (final year),
 College Of Engineering Guindy,
 Anna University,
 Chennai-25.


  --
 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.



Re: [algogeeks] Novell questions

2011-08-11 Thread manvir siyo
can anyone tell me abt the written test of d e shaw
On Thu, Aug 11, 2011 at 11:13 PM, mohit verma mohit89m...@gmail.com wrote:

 Hey guys,

 can anyone post some written and interview question asked by Novell?

 --
 
 *MOHIT VERMA*

  --
 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.



[algogeeks] output

2011-08-11 Thread manvir siyo
 output of the program?

#define prn(a) printf(%d,a)
#define print(a,b,c) prn(a), prn(b), prn(c)
#define max(a,b) (a

main()
{
int x=1, y=2;
print(max(x++,y),x,y);
print(max(x++,y),x,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.