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

Dart bubble sort #179

Closed FAHADPN closed 1 year ago

FAHADPN commented 1 year ago

Introduction

Added the Bubble sort algorithm in dart programming language. Bubble sort algorithm is one the basic sorting algorithm usually implemented in the early and beginner stage of programming.

Algorithm

The Bubble sorting algorithm works on simple swapping method. Refer the following flow chart to know more on how the sort works

image