The inplace_merge() function is similar to the merge() function, but instead of creating a new sorted range of elements, inplace_merge() alters the existing ranges to perform the merge in-place. --- cppreference.com
On Thu, Oct 11, 2012 at 4:02 PM, Amitesh Singh <[email protected]>wrote: > Hi, > > Just wondering if anybody know the implementation of inplace_merge() > defined in C++/STL (<algorithm> ? > > > Source: http://www.cplusplus.com/reference/algorithm/inplace_merge/ > > > > Thanks > -- > Amitesh > > > -- > 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.
