Go to file
Anup Kumar Panwar ad1e42cfc4 Merge pull request #60 from varunu28/master
Create removeDuplicateFromString.java
2017-06-27 21:32:28 +05:30
Conversions Conversions Works 2017-06-09 16:50:42 -06:00
data_structures Added a few edge cases in the stack class 2017-06-20 23:13:22 -06:00
Searches Merge pull request #32 from theycallmemac/patch-4 2017-04-27 20:06:52 +05:30
Sorts Updated to more efficient version if array size is scaled. 2017-05-18 14:11:47 -04:00
.classpath In this commit I have: 2017-04-18 07:57:17 -07:00
.DS_Store floyd triangle 2017-06-16 16:47:35 +05:30
.gitignore In this commit I have: 2017-04-18 07:57:17 -07:00
.project In this commit I have: 2017-04-18 07:57:17 -07:00
bfs.java - Closed all Scanner and Buffered Readers 2017-04-20 11:56:21 -07:00
countwords.java Update countwords.java 2017-06-01 00:17:06 -04:00
DecimalToOctal.java - Closed all Scanner and Buffered Readers 2017-04-20 11:56:21 -07:00
dfs.java - Closed all Scanner and Buffered Readers 2017-04-20 11:56:21 -07:00
Dijkshtra.java Dijkshtra.java 2017-04-24 19:27:05 +05:30
Factorial.java Update Factorial.java 2017-05-31 19:38:17 -04:00
FindingPrimes.java In this commit I have: 2017-04-18 07:57:17 -07:00
ft.java floyd triangle 2017-06-16 16:47:35 +05:30
krishnamurthy.java krishnamurthy 2017-06-16 17:05:39 +05:30
README.md Updated Readme and Implemented Merge Sort 2016-10-08 15:20:45 -04:00
removeDuplicateFromString.java Create removeDuplicateFromString.java 2017-06-27 12:02:37 +05:30
ReverseString.java Update ReverseString.java 2017-06-01 08:09:19 -04:00

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