Skip to content

Commit 16eb762

Browse files
author
jsroyal
committed
perfect demo
2 parents 6f93036 + 5563d88 commit 16eb762

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Algorithms and Data Structures implemented in Java
66
This is a collection of algorithms and data structures which I've implement over the years in my academic and professional life. The code isn't overly-optimized but is written to be correct and readable. The algorithms and data structures are well tested and, unless noted, are believe to be 100% correct.
77

88
## Table of Contents
9-
- [Data Structures](#Data-Structures)
10-
- [Mathematics](#Mathematics)
11-
- [Numbers](#Numbers)
12-
- [Graphs](#Graphs)
13-
- [Search](#Search)
14-
- [Sequences](#Sequences)
15-
- [Sorts](#Sorts)
16-
- [String Functions](#String-Functions)
9+
- [Data Structures](#data-structures)
10+
- [Mathematics](#mathematics)
11+
- [Numbers](#numbers)
12+
- [Graphs](#graphs)
13+
- [Search](#search)
14+
- [Sequences](#sequences)
15+
- [Sorts](#sorts)
16+
- [String Functions](#string-functions)
1717

1818
## * Created by Justin Wetherell
1919

@@ -31,13 +31,13 @@ This is a collection of algorithms and data structures which I've implement over
3131
# What's been implemented:
3232

3333
## Data Structures
34-
* [\[AVL Tree\]](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/AVLTree.java)
35-
* [B-Tree](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BTree.java)
36-
* [Binary Heap (backed by an array or a tree)](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BinaryHeap.java)
37-
* [Binary Search Tree](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BinarySearchTree.java)
38-
* [Compact Suffix Trie (backed by a Patricia Trie)](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/CompactSuffixTrie.java)
39-
* [Disjoint Set](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/DisjointSet.java)
40-
* [Fenwick Tree {Binary Indexed Tree (BIT)}](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/FenwickTree.java)
34+
* [AVL Tree](src/com/jwetherell/algorithms/data_structures/AVLTree.java)
35+
* [B-Tree](src/com/jwetherell/algorithms/data_structures/BTree.java)
36+
* [Binary Heap (backed by an array or a tree)](src/com/jwetherell/algorithms/data_structures/BinaryHeap.java)
37+
* [Binary Search Tree](src/com/jwetherell/algorithms/data_structures/BinarySearchTree.java)
38+
* [Compact Suffix Trie (backed by a Patricia Trie)](src/com/jwetherell/algorithms/data_structures/CompactSuffixTrie.java)
39+
* [Disjoint Set](src/com/jwetherell/algorithms/data_structures/DisjointSet.java)
40+
* [Fenwick Tree {Binary Indexed Tree (BIT)}](src/com/jwetherell/algorithms/data_structures/FenwickTree.java)
4141
* Graph
4242
+ Undirected
4343
+ Directed (Digraph)

0 commit comments

Comments
 (0)