Re: [algogeeks] size of array

2013-01-30 Thread Piyush
sizeof(array)/sizeof(array[0]) On 28-Jan-13 3:44 PM, Anil Sharma wrote: How to calculate the size/lenght of an int array which is passed as an ONLY argument to a function??? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks

Re: [algogeeks]

2013-01-30 Thread Shamil
After shuffling order can be same as previous order. It is quite natural. As you said you can shuffle again if you don't want that case. On Wednesday, January 30, 2013 10:16:57 AM UTC+4, shady wrote: Yes I agree to it, it won't be random... but suppose I don't want a case when all elements

Re: [algogeeks] size of array

2013-01-30 Thread Prem Krishna Chettri
@Piyush .. Never works.. @All there is no way to do the given requirement in pure C. On Wed, Jan 30, 2013 at 1:45 PM, Piyush piyush.to...@gmail.com wrote: sizeof(array)/sizeof(array[0]) On 28-Jan-13 3:44 PM, Anil Sharma wrote: How to calculate the size/lenght of an int array which is

Re: [algogeeks] size of array

2013-01-30 Thread Nishant Pandey
i already said this is not possible , in my intial draft , as we dont have any information of memory owner in called function , just have base address which is address of single element of the array . On Wed, Jan 30, 2013 at 1:55 PM, Prem Krishna Chettri hprem...@gmail.comwrote: @Piyush ..

Re: [algogeeks] Puzzle.. How to solve??

2013-01-30 Thread nikhil rao
Thanks Varun :) On Wednesday, 30 January 2013 11:21:35 UTC+5:30, varun pahwa wrote: Hi, Look at team Team7. F2,F9,F12,F14,F15. = F12 - Chelsa. C - 7,12 L - 2,9 and 14,15 not from liverpool. Now, look at Team 6. So, C - 7,12 L - 3,6,2,9 U - 15 , 1 (From Team 1)

Re: [algogeeks] Puzzle.. How to solve??

2013-01-30 Thread nikhil rao
Ya your rite Anmol . 4th was wrong i guess.. incomplete question. On Tuesday, 29 January 2013 12:58:07 UTC+5:30, Anmol Dhar wrote: Answer: 1)- (4) 2)-- (2) 3)--- (a) 4) doubt, for which team match fees you are asking? 5) (b) Correct me if i'm wrong..please

[algogeeks] Re: Generating mazes

2013-01-30 Thread Don
It is George Marsaglia's multiply with carry pseudo-random number generator. It has a period of 2^32, which is long enough for this purpose. It is about as good as a 32-bit rng can be. In real life I use the Mersenne Twister, but I wanted something simple to include here. Don On Jan 29, 11:46 

[algogeeks] Re: GATE-2011 Question

2013-01-30 Thread Don
You have to identify the bottleneck in the pipeline. The time required for the bottleneck is the steady state time per operation of the pipelined processing. Then determine the time to do the 4 stages sequentially. The difference is the speed up. Don On Jan 30, 11:59 am, Ayush Kapoor

[algogeeks] Re: size of array

2013-01-30 Thread Don
There is not a sure way to do that in C or C++ without putting an additional requirement on the caller. Don On Jan 28, 5:14 am, Anil Sharma anilsharmau...@gmail.com wrote: How to calculate the size/lenght of an int array which is passed as an ONLY argument to a function??? -- You