@Anand: Your solution will take huge space and can easily be made to
run out of memory!
If arr5[] = {12,12,6,6,635}, you will run into n^3 space complexity.
For arr[5]={12,12,6,6,390625} it will be n^6.

Sain


On Jun 7, 3:27 am, Anand <anandut2...@gmail.com> wrote:
> Here is my approch which runs in O(n).
>
> http://codepad.org/d3pzYQtW
> <http://codepad.org/d3pzYQtW>
>
>
>
> On Sun, Jun 6, 2010 at 7:47 AM, divya jain <sweetdivya....@gmail.com> wrote:
> > output willl be 12 12 5 6 6
>
> > On 6 June 2010 18:27, souravsain <souravs...@gmail.com> wrote:
>
> >> @divya: Does your problem require the output to be sorted also? What
> >> will be the output required if inout is 12,5,6,12,6? Will it be
> >> 12,12,6,6,5 or 12,12,5,6,6,?
>
> >> Sain
>
> >> On Jun 6, 12:01 am, divya <sweetdivya....@gmail.com> wrote:
> >> > Given an array with some repeating numbers. Like 12,6,5,12,6
>
> >> > output: 12,12,6,6,5
> >> > 12 shud come before 6 since it is earlier in list. So cant use a
> >> > dictionary
>
> >> --
> >> You received this message because you are subscribed to the Google Groups
> >> "Algorithm Geeks" group.
> >> To post to this group, send email to algoge...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> algogeeks+unsubscr...@googlegroups.com<algogeeks%2bunsubscr...@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 algoge...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > algogeeks+unsubscr...@googlegroups.com<algogeeks%2bunsubscr...@googlegroups­.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@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.

Reply via email to