- What are the different sorting types in data structure?
- Which one is more quick?
- Examples
- What are the different sorting types in data structure?
- Which one is more quick?
- Examples
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shweta LodhaPosted Jul 7, 2021, 10:35 PM
Possible sorting types:
And here is the time complexities:
Original link : Sorting Algorithms - InterviewBit
Rajeesh MenothPosted Aug 23, 2021, 5:31 AM
Sagar LadPosted Aug 21, 2021, 7:52 PM
Shweta LodhaPosted Jul 7, 2021, 10:40 PM
Which algo is fastest, it can not be said as each and every sorting method has their pros and cons. Based on the situation, one can be used. For example, if efficiency is not an issue, one can use Bubble sort as it's very easy to implement. But if your array is almost sorted then Insertion sort could be your option and goes on.