All Projects β†’ TheAlgorithms β†’ Dart

TheAlgorithms / Dart

Licence: mit

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Dart

Dailycodebase
2 month data structures and algorithmic scripting challenge starting from 20th December 2018 - Coding is Fun! πŸ’―πŸ’― Do it everyday!! Also, Do give us a ⭐ if you liked the repository
Stars: ✭ 186 (-33.09%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Programmers Community
This repository contains various solution of a problem in Ruby, C, C++, Python and Java.
Stars: ✭ 189 (-32.01%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Algorithms
In case you want to contribute, ping on https://gitter.im/NITSkmOS/algo.
Stars: ✭ 95 (-65.83%)
Mutual labels:  hacktoberfest, algorithms, data-structures
C Sharp
All algorithms implemented in C#.
Stars: ✭ 3,310 (+1090.65%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Competitive Programming
Hello Programmers πŸ’» , A one-stop Destination✏️✏️ for all your Competitive Programming Resources.πŸ“—πŸ“• Refer CONTRIBUTING.md for contributions
Stars: ✭ 113 (-59.35%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Data Structures And Algorithms In Cpp
This repository is in development phase and will soon provide you with c++ code of various data structures and algorithms
Stars: ✭ 176 (-36.69%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Rust
All Algorithms implemented in Rust
Stars: ✭ 4,562 (+1541.01%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Java
Repository for Java codes and algos.Star the repo too.
Stars: ✭ 53 (-80.94%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Cpp
Repository for C++/C codes and algos.
Stars: ✭ 265 (-4.68%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Java
All Algorithms implemented in Java
Stars: ✭ 42,893 (+15329.14%)
Mutual labels:  hacktoberfest, algorithms, data-structures
C Plus Plus
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes.
Stars: ✭ 17,151 (+6069.42%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Jupyter
Stars: ✭ 145 (-47.84%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Haskell
Stars: ✭ 91 (-67.27%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Data Structures And Algorithms Hacktoberfest18
List of data structures and algorithms. Feel free to contribute under Hacktoberfest '18!
Stars: ✭ 187 (-32.73%)
Mutual labels:  hacktoberfest, algorithms, data-structures
C
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
Stars: ✭ 11,897 (+4179.5%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Data Structures Algorithms
Your personal library of every algorithm and data structure code that you will ever encounter
Stars: ✭ 157 (-43.53%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Algorithms
🍣 Implementations of fundamental algorithms and data structures. Happy Hacktoberfest!
Stars: ✭ 41 (-85.25%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Data Structure And Algorithms
A complete and efficient guide for Data Structure and Algorithms.
Stars: ✭ 48 (-82.73%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Code With Love
Open source programming algorithms
Stars: ✭ 107 (-61.51%)
Mutual labels:  hacktoberfest, algorithms, data-structures
Ultimate Java Resources
Java programming. All in one Java Resource for learning. Updated every day and up to date. All Algorithms and DS along with Development in Java. Beginner to Advanced. Join the Discord link.
Stars: ✭ 143 (-48.56%)
Mutual labels:  hacktoberfest, algorithms, data-structures

The Algorithms - Dart

Build Status Donate   Gitter chat  

All algorithms implemented in Dart (for education)

These implementations are for learning purposes. They may be less efficient than the implementations in the Dart standard library.

List of Algorithms

See our directory for full list of all algorithms. A few of the algorithms (the most common ones) are explained here.

Search Algorithms

Linear

alt text

From Wikipedia: linear search or sequential search is a method for finding a target value within a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched. Linear search runs in at the worst linear time and makes at most n comparisons, where n is the length of the list.

Properties

  • Worst case performance O(n)
  • Best case performance O(1)
  • Average case performance O(n)
  • Worst case space complexity O(1) iterative

Binary

alt text

From Wikipedia: Binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.

Properties

  • Worst case performance O(log n)
  • Best case performance O(1)
  • Average case performance O(log n)
  • Worst case space complexity O(1)

Sort Algorithms

Bubble

alt text

From Wikipedia: Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n)
  • Average case performance O(n^2)
View the algorithm in action

Insertion

alt text

From Wikipedia: Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n)
  • Average case performance O(n^2)
View the algorithm in action

Quick

alt text

From Wikipedia: Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n log n) or O(n) with three-way partition
  • Average case performance O(n^2)
View the algorithm in action

Selection

alt text

From Wikipedia: The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n^2)
  • Average case performance O(n^2)
View the algorithm in action

Merge

alt text

From Wikipedia: Merge sort (also commonly spelled mergesort) is a divide and conquer algorithm that was invented by John von Neumann in 1945. The algorithm dirst divides the list into the smallest unit (1 element), then compares each element with the adjacent list to sort and merge the two adjacent lists. Finally all the elements are sorted and merged. It is an efficient, general-purpose, comparison-based sorting algorithm.

Properties

  • Worst case performance O(n log n)
  • Best case performance O(n log n)
  • Average case performance O(n log n)
View the algorithm in action

Shell

alt text

From Wikipedia: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.

Properties

  • Worst case performance O(nlog2 2n)
  • Best case performance O(n log n)
  • Average case performance depends on gap sequence
View the algorithm in action

Time-Complexity Graphs

Comparing the complexity of sorting algorithms (Bubble Sort, Insertion Sort, Selection Sort)

Complexity Graphs


Community Channel

We're on Gitter! Please join us.

Contribution

Please read our CONTRIBUTING.md.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].