Algorithm and data structure with java

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Algorithms and Data Structures implemented in Java

License

phishman3579/java-algorithms-implementation

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Java : Algorithms and Data Structure

The algorithms and data structures are implemented in Java.

This is a collection of algorithms and data structures I’ve implemented in my academic and professional life. The code isn’t optimized but is written to be correct and readable. The algorithms and data structures are tested and, unless noted, believed to be correct.

Created by Justin Wetherell

  • For questions use: http://groups.google.com/forum/#!forum/java-algorithms-implementation
  • Google: http://code.google.com/p/java-algorithms-implementation
  • Github: http://github.com/phishman3579/java-algorithms-implementation
  • LinkedIn: http://www.linkedin.com/in/phishman3579
  • E-mail: phishman3579@gmail.com
  • Twitter: http://twitter.com/phishman3579

Support me with a donation

  • AVL Tree
  • B-Tree
  • Binary Heap (backed by an array or a tree)
  • Binary Search Tree
  • Compact Suffix Trie (backed by a Patricia Trie)
  • Disjoint Set
  • Fenwick Tree
  • Graph
    • Undirected
    • Directed (Digraph)
    • Distance
      • chebyshev
      • euclidean
      • using a loop
      • using recursion
      • using shifts and multiplication
      • using only shifts
      • using logarithm
      • using a loop
      • using recursion
      • using only shifts
      • using logarithms
      • Fast Fourier Transform
      • recursive exponentiation
      • fast recursive exponentiation
      • fast modular recursive exponentiation
      • is prime
      • prime factorization
      • sieve of eratosthenes
      • Miller-Rabin test
      • Co-Primes (relatively prime, mutually prime)
      • Greatest Common Divisor
        • using Euclid’s algorithm
        • using recursion
        • strings
        • numbers
        • add
        • subtract
        • multiply
        • divide
        • power
        • Integers
Оцените статью