Re: [algogeeks] Re: puzzle

2011-06-26 Thread D.N.Vishwakarma@IITR
explain how is it 3? On Jun 26, 11:18 pm, D.N.Vishwakarma@IITR deok...@gmail.com wrote: 3 mice . On Sun, Jun 26, 2011 at 6:13 PM, ArPiT BhAtNaGaR arpitbhatnagarm...@gmail.com wrote: 3 On Mon, Jun 27, 2011 at 2:10 AM, amit the cool amitthecoo...@gmail.comwrote

Re: [algogeeks] Need help

2011-06-15 Thread D.N.Vishwakarma@IITR
In windows you can choose codeblocks or best is use linux gnu compiler On Wed, Jun 15, 2011 at 8:50 PM, shashankreddy509 shashankreddy...@gmail.com wrote: can any one tell the best compiler for c and c++... Thanks, G. Shashank Reddy -- You received this message because you are

[algogeeks] If anyone have ebook for STL in C++ please mail or provide downloadable link

2011-06-12 Thread D.N.Vishwakarma@IITR
thanx in advance -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- 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] Re: plz tell what is wrong in my this code... This code is for finding whether there are two numbers in array whose sum is exactly equal to given value x or not ... program is given as

2011-06-11 Thread D.N.Vishwakarma@IITR
to be thankful for !! * On Thu, Jun 9, 2011 at 8:57 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: we have to find solution in O(nlgn) On Thu, Jun 9, 2011 at 8:22 AM, D.N.Vishwakarma

Re: [algogeeks] Re: finding whether sum of two numbers of array is equal to given number or not ? plz tell why my this is not working for x=10,11,13 values

2011-06-09 Thread D.N.Vishwakarma@IITR
thanx a lot Now it is working for all cases.. On Thu, Jun 9, 2011 at 11:28 AM, varun pahwa varunpahwa2...@gmail.comwrote: may be now it works for all. please correct me if i am wrong.you haven't put termination in binary search. #includeiostream using namespace std; void merge(int

[algogeeks] Finding total number of inversions in an array in O(nlogn) complexity .

2011-06-09 Thread D.N.Vishwakarma@IITR
Inversion means pair(i,j) such that ij and A[i]A[j] -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- 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

Re: [algogeeks] Finding total number of inversions in an array in O(nlogn) complexity .

2011-06-09 Thread D.N.Vishwakarma@IITR
, 2011 at 4:05 PM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: Inversion means pair(i,j) such that ij and A[i]A[j] -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

Re: [algogeeks] Finding total number of inversions in an array in O(nlogn) complexity .

2011-06-09 Thread D.N.Vishwakarma@IITR
how insertion sort will do in O(nlogn)? On Thu, Jun 9, 2011 at 4:27 PM, Navneet Gupta navneetn...@gmail.com wrote: Insertion sort also would do. On Thu, Jun 9, 2011 at 4:22 PM, D.N.Vishwakarma@IITR deok...@gmail.com wrote: thanx for suggestion On Thu, Jun 9, 2011 at 4:08 PM, sunny

[algogeeks] plz tell what is wrong in my this code... This code is for finding whether there are two numbers in array whose sum is exactly equal to given value x or not ... program is given as .cpp fi

2011-06-08 Thread D.N.Vishwakarma@IITR
thanx in advance -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- 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] Re: plz tell what is wrong in my this code... This code is for finding whether there are two numbers in array whose sum is exactly equal to given value x or not ... program is given as .cp

2011-06-08 Thread D.N.Vishwakarma@IITR
we have to find solution in O(nlgn) On Thu, Jun 9, 2011 at 8:22 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: thanx in advance -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- **With Regards Deoki Nandan Vishwakarma IITR MCA * * -- You received this message because

[algogeeks] finding whether sum of two numbers of array is equal to given number or not ? plz tell why my this is not working for x=10,11,13 values

2011-06-08 Thread D.N.Vishwakarma@IITR
#includeiostream using namespace std; void merge(int A[],int p,int q,int r) { int n1=q-p+1;int n2=r-q; int L[n1]; int R[n2]; for(int i=0;in1;i++) L[i]=A[p+i]; for(int j=0;jn2;j++) R[j]=A[q+j+1]; int i=0,j=0,k; for(k=p;kr;k++) { if((L[i]=R[j])in1) {A[k]=L[i];i++;} else {A[k]=R[j];j++;} }

[algogeeks] Re: finding whether sum of two numbers of array is equal to given number or not ? plz tell why my this is not working for x=10,11,13 values

2011-06-08 Thread D.N.Vishwakarma@IITR
we have to find in O(nlgn) On Thu, Jun 9, 2011 at 10:55 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: #includeiostream using namespace std; void merge(int A[],int p,int q,int r) { int n1=q-p+1;int n2=r-q; int L[n1]; int R[n2]; for(int i=0;in1;i++) L[i]=A[p+i]; for(int j=0;jn2;j

Re: [algogeeks] required ebook of Top down approach networking book 4th edition + tenanbaum os solution

2011-06-08 Thread D.N.Vishwakarma@IITR
link to tenenbaum os solutions http://www.ebah.com.br/content/ABGlsAA/tanenbaum-modern-operating-systems-2ed-solution On Wed, Jun 8, 2011 at 10:56 AM, Rahul Singhal nitk.ra...@gmail.com wrote: Dear All, If you have any ebook mentioned above, please share them. Thanks -- Rahul singhal

[algogeeks] Read a data from given particular memory location in C++

2011-06-04 Thread D.N.Vishwakarma@IITR
say memory location is 0x33f070 of int *x=new int(p); p is some value at that location. we have to find p at that location using some indirect way... without using cout(void*x); Is there any other way to find p? -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * --

Re: [algogeeks] Re: Read a data from given particular memory location in C++

2011-06-04 Thread D.N.Vishwakarma@IITR
are you trying to do? Looks like you want to allocate space for an integer value and assign the value p to it. So, you need to refer it with some pointer (in this case x). On Jun 4, 2:24 pm, D.N.Vishwakarma@IITR deok...@gmail.com wrote: say memory location is 0x33f070 of int *x=new int(p

Re: [algogeeks] Answer pls...

2011-06-02 Thread D.N.Vishwakarma@IITR
f is NOT 1.0 On Thu, Jun 2, 2011 at 8:35 PM, Balaji S balaji.ceg...@gmail.com wrote: #include stdio.h int main() { float f=0.0f; int i; for(i=0;i10;i++) f = f + 0.1f; if(f == 1.0f) printf(f is 1.0 \n); else

[algogeeks] How to remove duplicate element from array in one pass.

2011-06-02 Thread D.N.Vishwakarma@IITR
better than O(n2) algo -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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

Re: [algogeeks] How to remove duplicate element from array in one pass.

2011-06-02 Thread D.N.Vishwakarma@IITR
@Sanjay ahuja yes ans is required in O(n) how it can be done by hashing? On Fri, Jun 3, 2011 at 1:19 AM, Supraja Jayakumar suprajasank...@gmail.comwrote: Hi I think multi hash table will solve this problem. Thanks Supraja J On Thu, Jun 2, 2011 at 1:37 PM, Harshal hc4...@gmail.com wrote:

Re: [algogeeks] How to remove duplicate element from array in one pass.

2011-06-02 Thread D.N.Vishwakarma@IITR
and make hash on key. But this will not be one pass. On Fri, Jun 3, 2011 at 7:31 AM, D.N.Vishwakarma@IITR deok...@gmail.com wrote: @Sanjay ahuja yes ans is required in O(n) how it can be done by hashing? On Fri, Jun 3, 2011 at 1:19 AM, Supraja Jayakumar suprajasank...@gmail.com wrote

[algogeeks] sum of two n bit binary intergers

2011-05-31 Thread D.N.Vishwakarma@IITR
There are two n length array A[1...n] ,B[1...n] in which n-bit binary integers are stored... We have to sum these two integers and store it in n+1 length array C[1...n+1] in binary form -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- You received this message

Re: [algogeeks] one constructor problem

2011-05-29 Thread D.N.Vishwakarma@IITR
:36 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: without default constructor what will be solution On Wed, May 25, 2011 at 10:56 AM, Aakash Johari aakashj@gmail.comwrote: This way you can do: #include iostream using namespace std; class A { public

Re: [algogeeks] one constructor problem

2011-05-27 Thread D.N.Vishwakarma@IITR
/Initializeanarrayofobjectswithoutreferencingtheconstructordirectly.htm Thanks, Immanuel On Wed, May 25, 2011 at 7:34 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: There is a class A which contains just one parameterized constructor A(int a). How would you initialize an array of objects of this class

[algogeeks] one constructor problem

2011-05-24 Thread D.N.Vishwakarma@IITR
There is a class A which contains just one parameterized constructor A(int a). How would you initialize an array of objects of this class. -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- You received this message because you are subscribed to the Google Groups

Re: [algogeeks] Fwd: Problems

2011-04-29 Thread D.N.Vishwakarma@IITR
No Its not an assignment On Thu, Apr 28, 2011 at 6:40 PM, Umer Farooq the.um...@gmail.com wrote: This is an assignment. Ryt? :P On Thu, Apr 28, 2011 at 1:31 PM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: * * *Just give some time to these problems and solve it. Its sort

[algogeeks] Fwd: Problems

2011-04-28 Thread D.N.Vishwakarma@IITR
* * *Just give some time to these problems and solve it. Its sort of Urgent.And Let me know the Solution. * 1. Write an algorithm to implement a stack using a two dimensional array. 2. Write an algorithm to store elements of a two-dimensional array in a simple stack. 3. You

[algogeeks] If anyone have Software Engineering Concepts By Richards E. Fairley Ebook then please mail me

2011-04-27 Thread D.N.Vishwakarma@IITR
Thanks in advance -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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,

Re: [algogeeks] Cracking the IT interview: jump start your career with confidence

2011-04-25 Thread D.N.Vishwakarma@IITR
please mail me too On Mon, Apr 25, 2011 at 8:02 AM, DIPANKAR DUTTA dutta.dipanka...@gmail.comwrote: can Any one have the link of the following book: Cracking the IT interview: jump start your career with confidence By M Balasubramaniam -- Thanks and Regards,

[algogeeks] Can anyone tell group name of good english vocabulary

2011-04-25 Thread D.N.Vishwakarma@IITR
* * -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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] Re: Link for sartaj sahni video lectures

2011-04-25 Thread D.N.Vishwakarma@IITR
No It is not a fake link wait for 5 seconds then pree skip ad button then you will be directed to actual site On Mon, Apr 25, 2011 at 3:13 PM, KK kunalkapadi...@gmail.com wrote: Hey it seems to be a fake link... It directs to some site which shorten URLs -- You received this message because

[algogeeks] If anyone have mastering in java ebook please mail me or atleast give me the direct or torrent link ...

2011-04-24 Thread D.N.Vishwakarma@IITR
Thanks in advance -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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,

Re: [algogeeks] Re: Sartaj Sahni ebook

2011-04-24 Thread D.N.Vishwakarma@IITR
@KK I have shared a link of sartaj sahni ebook wth you On Sun, Apr 24, 2011 at 4:06 PM, KK kunalkapadi...@gmail.com wrote: @ Carl Barton: I also know that site... i want a shared link u stupid... -- You received this message because you are subscribed to the Google Groups Algorithm Geeks

Re: [algogeeks] Stroustrup C++ BOOK

2011-04-24 Thread D.N.Vishwakarma@IITR
I have shared this book with algo geek group please check in group On Sun, Apr 24, 2011 at 6:52 PM, hary rathor harry.rat...@gmail.com wrote: send link to me also harry.rat...@gmail.com -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To

[algogeeks] Link for sartaj sahni ebook

2011-04-24 Thread D.N.Vishwakarma@IITR
*http://adf.ly/1Jcs4 * -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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

[algogeeks] Link for sartaj sahni video lectures

2011-04-24 Thread D.N.Vishwakarma@IITR
http://adf.ly/1JcvH -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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

[algogeeks] Link for good computer ebooks

2011-04-24 Thread D.N.Vishwakarma@IITR
http://adf.ly/1JcyN -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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

Re: [algogeeks] Stroustrup C++ BOOK

2011-04-23 Thread D.N.Vishwakarma@IITR
*Book can't be send to group as it is more than 4.0 mb . and group can't have massage more than 4.0 mb * On Sat, Apr 23, 2011 at 7:01 PM, UMESH KUMAR kumar.umesh...@gmail.comwrote: hi. Do you have anybody C++ by Stroustrup e-book please send on group. Thanks and Regards Umesh kumar --

Re: [algogeeks] Stroustrup C++ BOOK

2011-04-23 Thread D.N.Vishwakarma@IITR
No I don't but I can give link of my gmail documents where I have uploaded that book On Sat, Apr 23, 2011 at 7:31 PM, UMESH KUMAR kumar.umesh...@gmail.comwrote: If you know link for that book please send for direct Download On Sat, Apr 23, 2011 at 6:57 AM, D.N.Vishwakarma@IITR deok

Re: [algogeeks] If anyone have this book please mail me Thanks in advance

2011-04-23 Thread D.N.Vishwakarma@IITR
subhransu.panigr...@gmail.comwrote: Could you please mail me the URL/PDF of this. the above link seems not working for me *Subhransu Panigrahi * *Mobile:* *+91-9840931538* *Email:* subhransu.panigr...@gmail.com On Wed, Apr 20, 2011 at 7:22 AM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: *I've

[algogeeks] http://www.PaisaLive.com/register.asp?2924545-8623096

2011-04-23 Thread D.N.Vishwakarma@IITR
* * -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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] Ebooks Sites

2011-04-21 Thread D.N.Vishwakarma@IITR
www.etwist.net On Fri, Apr 22, 2011 at 12:53 AM, KK kunalkapadi...@gmail.com wrote: Hello people please share sites from where good programming ebooks can be downloaded... i use library.nu and 4shared.com -- You received this message because you are subscribed to the Google Groups

[algogeeks] If anyone have these books please mail

2011-04-20 Thread D.N.Vishwakarma@IITR
1.Mastering Java 2 2. Java 2 by Ivor Horton -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- 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

[algogeeks] If anyone have this book please mail me Thanks in advance

2011-04-19 Thread D.N.Vishwakarma@IITR
Cracking the Coding Interview by *Gayle Laakmannhttp://pothi.com/pothi/search/google?cx=014194668748364006794:ovhp_xhwczgcof=FORID:11query=Gayle%20Laakmannop=Searchform_id=google_cse_searchbox_form * -- **With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department* * -- You

Re: [algogeeks] If anyone have this book please mail me Thanks in advance

2011-04-19 Thread D.N.Vishwakarma@IITR
*I've already got But thanks for your link * On Wed, Apr 20, 2011 at 5:32 AM, DIPANKAR DUTTA dutta.dipanka...@gmail.comwrote: plz chk the folowing link.. www.*mediafire*.com/?692caj1v154c5kc On Tue, Apr 19, 2011 at 11:05 PM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: Cracking

Re: [algogeeks] ADULT SEX PHOTOS

2011-04-14 Thread D.N.Vishwakarma@IITR
* I'll if I could. * On Thu, Apr 14, 2011 at 1:24 PM, ArPiT BhAtNaGaR arpitbhatnagarm...@gmail.com wrote: kick him plzzz On Thu, Apr 14, 2011 at 11:44 AM, taocp mojiedash...@gmail.com wrote: Plz ban him. 2011/4/14 ramya raman ramyaraman9...@gmail.com hot

Re: [algogeeks] Re: Sequence Puzzle 13april

2011-04-14 Thread D.N.Vishwakarma@IITR
3 1 2 2 1 1 1 3 1 1 2 2 2 1 On Thu, Apr 14, 2011 at 10:24 PM, arpit.gupta arpitg1...@gmail.com wrote: 3 1 2 2 1 1 1 3 1 1 2 2 2 1 On Apr 13, 12:32 pm, Lavesh Rawat lavesh.ra...@gmail.com wrote: * Sequence Puzzle The below is a number puzzle. It should be read left to right, top to

Re: [algogeeks] [brain teaser ] 29march

2011-03-29 Thread D.N.Vishwakarma@IITR
*122 it's so simple * On Tue, Mar 29, 2011 at 1:15 PM, Arpit Sood soodfi...@gmail.com wrote: 122 On Tue, Mar 29, 2011 at 1:05 PM, Lavesh Rawat lavesh.ra...@gmail.comwrote: *Series Problem Solution* 1, 2, 5, 14, 41, x Whats x ?? Update Your Answers at : Click

Re: [algogeeks] Virtual classes

2011-03-28 Thread D.N.Vishwakarma@IITR
at 11:37 AM, himanshu kansal himanshukansal...@gmail.com wrote: can u gv any link for reference...??? On Sat, Mar 26, 2011 at 12:29 PM, D.N.Vishwakarma@IITR deok...@gmail.com wrote: there is vtable known as virtual table which contains addresses of virtual functions

Re: [algogeeks] Another brainf**k challenge

2011-03-27 Thread D.N.Vishwakarma@IITR
*what is bf code?? * On Sun, Mar 27, 2011 at 4:45 PM, saurabh singh saurab...@gmail.com wrote: Write a program that reads a file and convert it to an equivalent bf code.(That is the on execution the bf code should yield the content of file).Several approaches are possible,but try to develop it

Re: [algogeeks] Virtual classes

2011-03-26 Thread D.N.Vishwakarma@IITR
*there is vtable known as virtual table which contains addresses of virtual functions . And there is vptr a pointer that points to vtable of that class space occupied by class having virtual function wil be equal to space occupied by a pointer * number of virtual functions .. I think this if there

Re: [algogeeks]

2011-03-26 Thread D.N.Vishwakarma@IITR
*@ Saurabh Singh gcc doesn't give it as error but turbo gives it as error ... As per ANSI C there is no error becoz n is already known before use... * On Sun, Mar 27, 2011 at 8:44 AM, saurabh singh saurab...@gmail.com wrote: The array allocation in c should be done at compile time.since its

Re: [algogeeks] If any one have algorithms for interviews by adnan aziz ebook... Please mail ...

2011-03-22 Thread D.N.Vishwakarma@IITR
On Tue, Mar 22, 2011 at 11:14 AM, D.N.Vishwakarma@IITR deok...@gmail.com wrote: -- *With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department * -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send

[algogeeks] If any one have algorithms for interviews by adnan aziz ebook... Please mail ...

2011-03-21 Thread D.N.Vishwakarma@IITR
-- *With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department * -- 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] How to print numbers from 1 to 100 without loop , without recursion , without #define statements , without goto statement

2011-03-17 Thread D.N.Vishwakarma@IITR
=1; int main() { arr a[100]; } On Wed, Mar 16, 2011 at 9:47 PM, kumar anurag anurag.it.jo...@gmail.com wrote: using two different functions calling one another ? like fun1() { fun2() } fun2() { fun1(); } On Wed, Mar 16, 2011 at 9:39 PM, D.N.Vishwakarma@IITR deok

[algogeeks] How to print numbers from 1 to 100 without loop , without recursion , without #define statements , without goto statement

2011-03-16 Thread D.N.Vishwakarma@IITR
* * -- *With Regards Deoki Nandan Vishwakarma IITR MCA Mathematics Department * -- 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] spoj problem - INFINITY

2011-03-03 Thread D.N.Vishwakarma@IITR
*this code is perfectly working . use gcc based compiler * On Thu, Mar 3, 2011 at 11:34 PM, Vishnutej mylavarapu.vishnu...@gmail.comwrote: I dunno y dis code isnt working. #includeiostream #includelimits using namespace std; int main() { coutnumeric_limitslong double::infinity(); }

Re: [algogeeks] spoj problem - INFINITY

2011-03-03 Thread D.N.Vishwakarma@IITR
*which compiler you r using? * On Fri, Mar 4, 2011 at 12:15 AM, Vishnutej Mylavarapu mylavarapu.vishnu...@gmail.com wrote: When I submit..Im getting a WA On Thu, Mar 3, 2011 at 11:55 PM, D.N.Vishwakarma@IITR deok...@gmail.comwrote: *this code is perfectly working . use gcc based compiler

Re: [algogeeks] pretty girls hot videosphotos

2011-02-22 Thread D.N.Vishwakarma@IITR
*Send some really hot photos link or videos link These r just normal... okay .. otherwise * On Tue, Feb 22, 2011 at 7:46 PM, SUNITHA BUSETTY sunitha.buse...@gmail.comwrote: SEXY DIYA MIRZA http://karomasti9.blogspot.com/2010/12/diya-mirza.html

Re: [algogeeks] HOT BABES

2011-02-21 Thread D.N.Vishwakarma@IITR
*What type of this algorithm ? Dynamic programming or heuristic approach? * On Mon, Feb 21, 2011 at 10:41 PM, SUNITHA BUSETTY sunitha.buse...@gmail.com wrote: ```ONLY HOT VIDEOS FOR YOUTH HOT VIDEOS http://sexy-rainsongs.blogspot.com/