define insartion sort ?
Answers
Answered by
2
Insertion Sort:
Insertion sort is the sorting mechanism where the sorted array is built having one item at a time. The array elements are compared with each other sequentially and then arranged simultaneously in some particular order.
The analogy can be understood from the style we arrange a deck of cards.
This sort works on the principle of inserting an element at a particular position, hence the name Insertion Sort.
Answered by
1
Answer:
Insertion sort is a simple sorting algorithm that build the final sorted array one item at a time . It is much less efficient on large list than more advanced algorithms such as quick sort , heap sort or merge sort
Similar questions