In-place refers to an algorithm that transforms input data without needing additional space for a copy of the data. This means that it operates directly on the input structure, making minimal or no additional memory allocations during its execution. In-place algorithms are often preferred in comparison-based sorting because they can save memory and improve performance by using the existing data structure efficiently.