I'm implementing a custom comparer in order to apply a custom sort order for items in various views.

Some of the time I'm finding that I want to maintain the existing order of items, in this case what should I return from my Compare method implementation? Is it enough to simply return 0, or do I actively need to identify which item came first?

有帮助吗?

解决方案

(Credit for this answer goes to Lee)

It depends on whether or not the algorithm used to do the sorting is stable. For example, the OrderBy is stable and so returning 0 from Compare will mean that the two items retain their original order in the list, however List.Sort is not, and so returning 0 from Compare doesn't guarentee that the two items will be in their original order in the sorted output.

其他提示

Zero, but your sort algorithm may still change its order.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top