Go to file
2017-06-16 16:47:35 +05:30
data_structures Merge pull request #14 from RianGallagher/master 2017-03-28 19:57:59 +05:30
.DS_Store floyd triangle 2017-06-16 16:47:35 +05:30
Binary Search.java Renamed 2016-08-09 15:53:03 +05:30
Binary to Decimal.java Added Binary to Decimal conversion. 2017-03-28 16:30:18 +05:30
Bubble Sort.java Renamed 2016-08-09 15:53:03 +05:30
countwords.java Counting the number of words in string 2017-04-09 10:26:56 +05:30
Decimal to Binary.java Added decimal to binary conversion 2017-03-28 16:17:37 +05:30
Decimal to octal.java Added Decimal to Octal conversion. 2017-03-28 19:21:53 +05:30
Factorial.java Implement factorial 2017-03-16 10:39:23 -04:00
FindingPrimes.java Added Sieve of Eratosthenes algorithm for finding primes 2016-11-23 18:07:18 +00:00
ft.java floyd triangle 2017-06-16 16:47:35 +05:30
HeapSort.java Update HeapSort.java 2016-10-08 13:44:26 -04:00
Insertion Sort.java Renamed 2016-08-09 15:53:03 +05:30
LinearSearch.java Add Linear Search 2017-03-15 00:06:52 -04:00
MergeSort.java Updated Readme and Implemented Merge Sort 2016-10-08 15:20:45 -04:00
Quicksort.java Implement quicksort 2017-03-15 00:17:33 -04:00
README.md Updated Readme and Implemented Merge Sort 2016-10-08 15:20:45 -04:00
reverse string.java Reversing the string using recursion 2017-04-09 19:01:09 +05:30
Selection Sort.java Renamed 2016-08-09 15:53:03 +05:30

The Algorithms - Java Build Status

All algorithms implemented in Java (for education)

These are for demonstration purposes only. There are many implementations of sorts in the Java standard library that are much better for performance reasons.

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

Merge

alt text

From Wikipedia: In computer science, merge sort (also commonly spelled mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.

Properties

  • Worst case performance O(n log n)
  • Best case performance O(n)
  • Average case performance O(n)
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