4N1Z / Sorting-Searching-Algorithms

This repo is meant to contain the algorithms for searching and sorting in every language .
MIT License
23 stars 97 forks source link

Added insertion sort algorithm in dart #193

Closed FAHADPN closed 1 year ago

FAHADPN commented 1 year ago

This Pull Request consist of insertion sort algorithm in Dart Programming Language.

Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time by comparisons. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort. However, insertion sort provides several advantages

AnirudhDaya commented 1 year ago

Hey pal, this code doesn't work properly. Please do not make PRs for such buggy codes. It will be spammed next time.

FAHADPN commented 1 year ago

Hey @AnirudhDaya The code works perfectly fine. The readme file is not updated correctly will make the changes asap.

FAHADPN commented 1 year ago

The Readme file for bubble sort was named as Bubblesort.md instead of Readme.md changed it as it was not showing up here