[algogeeks] EIL

2011-10-05 Thread akshay khatri
Hi Did anyone kno or have appeared for EIL written exam ? What type of question do they ask ? -- 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,

[algogeeks] Working at CDAC

2011-08-25 Thread akshay khatri
Hi Does anyone knows how is the work at CDAC, Noida as an engineer ? -- 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

Re: [algogeeks] Intersection of characters

2011-08-25 Thread akshay khatri
how about doing it with BST On 25 August 2011 19:57, saurabh singh saurab...@gmail.com wrote: Maintain a hash table with with 255 bits(Serch mail with first non repeated char in this group)...Not very significant overhead for any average sized file On Thu, Aug 25, 2011 at 7:42 PM, Shrey

[algogeeks] Regarding my posts

2011-08-25 Thread akshay khatri
Hi My posts are not appearing on the group. What could be the reason ? -- 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

Re: [algogeeks] address calculation

2011-08-06 Thread akshay khatri
how is that 49 bytes and 196 bytes shouldn't it be 44 and 176 bytes respectively On 6 August 2011 23:26, Ram Chauhan rb.chau...@gmail.com wrote: 1049 and 1098 On Sat, Aug 6, 2011 at 11:09 PM, aditi garg aditi.garg.6...@gmail.comwrote: CHAR A[10][15] AND INT B[10][15] IS DEFINED WHAT'S THE

Re: [algogeeks] address calculation

2011-08-06 Thread akshay khatri
knowledge, 0x1000 = 4096 and 0x2000 is 8192 On Sat, Aug 6, 2011 at 11:37 PM, akshay khatri akshaykhatri...@gmail.comwrote: how is that 49 bytes and 196 bytes shouldn't it be 44 and 176 bytes respectively On 6 August 2011 23:26, Ram Chauhan rb.chau...@gmail.com wrote: 1049 and 1098

Re: [algogeeks] address calculation

2011-08-06 Thread akshay khatri
instead if so add the base address and u get the ans 1031 and 20C4...i hope its clear now... I still don't get how you got the figures of 49 and 196 I calculated as follows A[3][4] = 10x4 + 4 = 44 bytes B[3][4] = (10x4 + 4 )x4 = 176 On Sat, Aug 6, 2011 at 11:49 PM, akshay khatri

[algogeeks] Problem with Virtual Function

2010-06-13 Thread akshay khatri
I have the following code structure in my file myPlugin.h , i have defined this virtual int speed(); and gave a dummy implementation in myPlugin.cpp In another file otherPlugin.h I have included this line: #include myPlugin.h private: int m_speed; also class otherPlugin

Re: [algogeeks] Problem with Virtual Function

2010-06-13 Thread akshay khatri
IIT Bombay http://www.cse.iitb.ac.in/~rohitfeb14 On Sun, Jun 13, 2010 at 12:20 PM, akshay khatri akshaykhatri...@gmail.com wrote: I have the following code structure in my file myPlugin.h , i have defined this virtual int speed(); and gave a dummy implementation in myPlugin.cpp

Re: [algogeeks] Problem with Virtual Function

2010-06-13 Thread akshay khatri
13, 2010 at 12:31 PM, akshay khatri akshaykhatri...@gmail.com wrote: Hi On 13 June 2010 12:26, Rohit Saraf rohit.kumar.sa...@gmail.com wrote: M-speed is private and you cannot call it from outside myPlugin. (though i did not understand what u wanted to say) Can you write ur prob

Re: [algogeeks] Problem with Virtual Function

2010-06-13 Thread akshay khatri
://www.cse.iitb.ac.in/~rohitfeb14 On Sun, Jun 13, 2010 at 12:47 PM, akshay khatri akshaykhatri...@gmail.com wrote: I meant this: let me explain it like this. I have *virtual int speed()* in class A.(in file A.h) I inherited class in class B(in file B.h) as class B:public A class B have a private member