Tagged Questions
1
vote
2answers
2k views
why is in place merge sort not stable?
The implementation below is stable as it used <= instead of < at line marked XXX. This also makes it more efficient. Is there any reason to use < and not <= at this line?
/**
class for In ...