Skip to content

Commit 7034bf8

Browse files
author
Ilias Tsangaris
committed
Make BST accept both a key & a value, closes 49
1 parent 64feb1c commit 7034bf8

File tree

10 files changed

+335
-217
lines changed

10 files changed

+335
-217
lines changed

CHANGELOG.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,27 @@ All notable changes to this project will be documented in this file.
33

44
## Unreleased
55

6+
## 2.0.0 - TBD
7+
### Features
8+
N/A
9+
10+
### Bugs
11+
N/A
12+
13+
### Breaking changes
14+
- For a BST Node, renamed the numerical property `value` to more appropriate `key`. A
15+
new `value` property is added to provide the ability for each node to store any data
16+
(aka a value) in addition to the numerical identifier (aka a key).
17+
618
## Released
719

820
## 1.0.0 - 2018-04-11
9-
### Added
21+
### Features
1022
- Implement Linked List
1123
– Implement BinarySearchTree
12-
### Changed
13-
-N/A
14-
### Removed
15-
-N/A
24+
25+
### Bugs
26+
N/A
27+
28+
### Breaking Changes
29+
N/A

0 commit comments

Comments
 (0)