Skip to content

Commit 6cc8fc2

Browse files
author
jsroyal
committed
update
1 parent 86a2db1 commit 6cc8fc2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ 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)
9+
- [Data Structures](#Data-Structures)
1010
- [Mathematics](#Mathematics)
1111
- [Numbers](#Numbers)
1212
- [Graphs](#Graphs)
1313
- [Search](#Search)
1414
- [Sequences](#Sequences)
1515
- [Sorts](#Sorts)
16-
- [String Functions](#String Functions)
16+
- [String Functions](#String-Functions)
17+
18+
## * Created by Justin Wetherell
1719

18-
* Created by Justin Wetherell
1920
* For questions use: http://groups.google.com/forum/#!forum/java-algorithms-implementation
2021
* Google: http://code.google.com/p/java-algorithms-implementation
2122
* Github: http://github.com/phishman3579/java-algorithms-implementation
@@ -34,7 +35,7 @@ This is a collection of algorithms and data structures which I've implement over
3435
* [B-Tree](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BTree.java)
3536
* [Binary Heap (backed by an array or a tree)](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BinaryHeap.java)
3637
* [Binary Search Tree](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/BinarySearchTree.java)
37-
* Compact Suffix Trie [backed by a Patricia Trie](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/CompactSuffixTrie.java)
38+
* [Compact Suffix Trie (backed by a Patricia Trie)](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/CompactSuffixTrie.java)
3839
* [Disjoint Set](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/DisjointSet.java)
3940
* [Fenwick Tree {Binary Indexed Tree (BIT)}](java-algorithms-implementation/src/com/jwetherell/algorithms/data_structures/FenwickTree.java)
4041
* Graph

0 commit comments

Comments
 (0)