Stable Sort in Swift
Table of Contents
What is Stable Sorting
A stable sort is a sort that keeps the original order for any elements that compare as equal.
Considering this example.
var users = [
User(firstName: "John", lastName: "Doe"),
User(firstName: "Alice", lastName: "Bob"),
User(firstName: "Sam", lastName: "Coffey"),
User(firstName: "Ashley", lastName: "Hatch"),
User(firstName: "Kristie", lastName: "Mewis"),
User(firstName: "Ashley", lastName: "Sanchez")
]
let sortedUsers = users.sorted(by: { $0.firstName < $1.firstName })
We sort users by their firstName
.
For a stable sort, once we find elements that compare as equal, the order of those elements before the sort will be preserved.
In this case, Ashley Hatch stays before Ashley Sanchez.
sortedUsers == [
User(firstName: "Alice", lastName: "Bob"),
User(firstName: "Ashley", lastName: "Hatch"),
User(firstName: "Ashley", lastName: "Sanchez"),
User(firstName: "John", lastName: "Doe"),
User(firstName: "Kristie", lastName: "Mewis"),
User(firstName: "Sam", lastName: "Coffey")
]
For an unstable sort, the order of elements with the same order doesn't guarantee to be preserved.
So there is a possibility that Ashley Hatch will come after Ashley Sanchez.
sortedUsers == [
User(firstName: "Alice", lastName: "Bob"),
User(firstName: "Ashley", lastName: "Sanchez"),
User(firstName: "Ashley", lastName: "Hatch"),
User(firstName: "John", lastName: "Doe"),
User(firstName: "Kristie", lastName: "Mewis"),
User(firstName: "Sam", lastName: "Coffey")
]
You can easily support sarunw.com by checking out this sponsor.
AI Grammar: Correct grammar, spell check, check punctuation, and parphrase.
Stable Sorting in Swift
The Swift sort has long been stable, but the documentation didn't align with the fact.
The documentation mentioned that the sorting algorithm is not guaranteed to be stable.
In Swift 5.8, the document finally update to reflect the real implementation.
Read more article about Swift, Swift 5.8, or see all available topic
Enjoy the read?
If you enjoy this article, you can subscribe to the weekly newsletter.
Every Friday, you'll get a quick recap of all articles and tips posted on this site. No strings attached. Unsubscribe anytime.
Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading and see you next time.
If you enjoy my writing, please check out my Patreon https://www.patreon.com/sarunw and become my supporter. Sharing the article is also greatly appreciated.
Become a patron Buy me a coffee Tweet ShareHow to initialize @Binding in SwiftUI
Learn how to implement a custom init that accepts a @Binding variable.