@Dave: Can u pls provide the link for median of median algo in O(n) time ..
On Wed, Sep 7, 2011 at 11:44 AM, Karan Thakral <[email protected]>wrote: > > check the case 63 62 46 71 28 39 43 24 36 12 > > You have to find 3rd largest 62 > > your case you will miss 62 in your first iteration > > > On Wed, Sep 7, 2011 at 9:41 AM, Anup Ghatage <[email protected]> wrote: > >> Here is another one. Pardon me if it goes by some other name. >> >> Divide the array in K parts. >> >> Find the Maximum in each of these parts and store it in an array of size >> K. >> >> Find the Minimum in K to find the K'th max. >> >> Total Time Complexity = O ( n + k ) where 0 <= k <= n >> >> -- >> Anup Ghatage >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> 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 [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- **Please do not print this e-mail until urgent requirement. Go Green!! Save Papers <=> Save Trees *BharatKumar Bagana* **http://www.google.com/profiles/bagana.bharatkumar<http://www.google.com/profiles/bagana.bharatkumar> * Mobile +91 8056127652* <[email protected]> -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
