Skip to content

Commit

Permalink
Updated version 1.1.1 (BST Implemented)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshiohasegawa committed Jul 6, 2021
1 parent 9f8ae66 commit 46e49d7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* [Stack](#stack)
* [Queue](#queue)
* [Tree](#tree)
* [Binary Search Tree](#binary-search-tree)
* [Linked List](#linked-list)
4. [Contact](#contact)

Expand All @@ -23,10 +24,11 @@ user@machine:~/$ pip install pydatastructs

Then, import it into your project:
```python
from pydatastructs import Stack, Queue, Tree, LinkedList
from pydatastructs import Stack, Queue, Tree, BinarySearchTree, LinkedList
my_stack = Stack(collection=[1, '2', {'3': 3}])
my_queue = Queue(collection=[4.4, [5], (6)])
my_tree = Tree(value='I am Groot')
my_binarysearchtree = BinarySearchTree(value=10)
my_linkedlist = LinkedList(value='HEAD')
```

Expand All @@ -37,6 +39,8 @@ Information about the stack data structure...
Information about the queue data structure...
## Tree
Information about the tree data structure...
## Binary Search Tree
Information about the binary search tree data structure...
## Linked List
Information about the linkedlist data structure...

Expand Down
5 changes: 4 additions & 1 deletion assets/long_description.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ user@machine:~/$ pip install pydatastructs

Then, import it into your project:
```python
from pydatastructs import Stack, Queue, Tree, LinkedList
from pydatastructs import Stack, Queue, Tree, BinarySearchTree, LinkedList
my_stack = Stack(collection=[1, '2', {'3': 3}])
my_queue = Queue(collection=[4.4, [5], (6)])
my_tree = Tree(value='I am Groot')
my_binarysearchtree = BinarySearchTree(value=10)
my_linkedlist = LinkedList(value='HEAD')
```

Expand All @@ -27,6 +28,8 @@ Information about the stack data structure...
Information about the queue data structure...
## Tree
Information about the tree data structure...
## Binary Search Tree
Information about the binary search tree data structure...
## Linked List
Information about the linkedlist data structure...

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

setup(
name = 'pydatastructs',
version = '1.1.0',
version = '1.1.1',
author = 'Yoshio Hasegawa',
author_email = '[email protected]',
description = 'A package that contains common data structures',
long_description = LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
url = 'https://github.com/yoshiohasegawa/python-data-structures',
download_url = 'https://github.com/yoshiohasegawa/python-data-structures/archive/refs/tags/v1.1.0.tar.gz',
download_url = 'https://github.com/yoshiohasegawa/python-data-structures/archive/refs/tags/v1.1.1.tar.gz',
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
Expand All @@ -30,5 +30,5 @@
install_requires=[
'typing'
],
keywords = ['Python', 'Data Structures', 'Collections', 'Stack', 'Queue', 'Tree', 'Binary Tree', 'Heap', 'Linked List'],
keywords = ['Python', 'Data Structures', 'Collections', 'Stack', 'Queue', 'Tree', 'Binary Search Tree', 'Heap', 'Linked List'],
)

0 comments on commit 46e49d7

Please sign in to comment.