-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
27 lines (20 loc) · 838 Bytes
/
README.txt
File metadata and controls
27 lines (20 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
java-algorithms
***
Brief description
This repo contains demo implementations of various data structures and algorithms.
***
Datastructures
This repo contains some data structure interfaces and their implementations that are largely based
on the book "Open Data Structures" by Pat Morin.
The List, USet, and SSet interfaces described in Section 1.2 are influenced by the Java Collections
Framework. These are essentially simplified versions of the List, Set, Map, SortedSet, and SortedMap
interfaces found in the Java Collections Framework.
***
Algorithms
[info to be provided]
***
TODO list:
- move leetcode.com solutions to another repo
- create a dictionary/map implementation using USet implementation
- includes wrapper classes for making USet and SSet implementations into Set, Map, SortedSet, and
SortedMap implementations.