user3320281
user3320281

Reputation:

What is the Difference between Sorting and Optimize Sorting?

I am beginner in programming.I have learn something about sorting.I heard a word name Optimize Sorting.I also heard from some people "How to optimize bubble sort or merge sort etc." and I don't know what's the difference between them.So can you please tell me what's the difference between them.

Upvotes: 0

Views: 110

Answers (1)

usr
usr

Reputation: 171236

You misunderstood the sentence. "Optimize Sorting" as a noun does not exist. It is a verb: "to optimize an existing sort algorithm". It should be clear what that means. It means creating a new algorithm that has the same structure as the old one, but is faster to execute.

Upvotes: 1

Related Questions