Quick Q: What's the difference between std::merge and std::inplace_merge? -- StackOverflow
Quick A: "Inplace" can deal with overlapping ranges, but will take either more space or more time.
Today on StackOverflow:
Difference between
std::mergeandstd::inplace_merge?What is the difference between
std::mergeandstd::inplace_mergein terms of complexity and result when it is executed on two consecutive ranges with elements that are all different ? (I am not a native english speaker and I am not sure to clearly understand what "inplace" means)
