-
I know there's quite a few sorting algorithms, I'm just wondering which one is the best from an experienced programmer's point of view. Let me know what you all think, I could really use some assistance on this, thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There are many types of sorting algorithms: bubble sort, quick sort, balloon sort, merge sort, radix sort, and more. No algorithm can be considered the best or fastest because they have been designed for a specific type of data structure where it performs the best. Personally I really like bubble sort tho, as it's very popular and has helped me in the past. |
Beta Was this translation helpful? Give feedback.
There are many types of sorting algorithms: bubble sort, quick sort, balloon sort, merge sort, radix sort, and more. No algorithm can be considered the best or fastest because they have been designed for a specific type of data structure where it performs the best. Personally I really like bubble sort tho, as it's very popular and has helped me in the past.