Why we design algorithm? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why we design algorithm?

15th Nov 2016, 4:14 AM
Hasnainraza
1 Answer
0
The sense in designing Algorithm lies in the frequent use of a certain manipulation of elements. You don't want to sort everything by your own sorting method when there are much faster codes snippets available. Additionally you can be sure that they deliver always the right result based on the input. The correctness and the complexity of them is tested. Also they can apply on a bunch of elements. Mergeseort for example can be applied to thousands of data structures. The same is for Insertion Sort
15th Nov 2016, 6:22 AM
Arsal Ali
Arsal Ali - avatar