Sorting in place

后端 未结 5 1234
梦如初夏
梦如初夏 2020-11-29 23:06

What is meant by to \"sort in place\"?

5条回答
  •  渐次进展
    2020-11-29 23:59

    I'm not sure these concepts are similar enough to compare as suggested. Yes, they both involve sorting, but one is about a sort ordering that is human understandable (natural) and the other defines an algorithm for efficient sorting in terms of memory by overwriting into the existing structure instead of using an additional data structure (like a bubble sort)

提交回复
热议问题