You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Python library for data structures. This library provides more than 20 advanced data structures not available in the Python standard library, including:
9
+
A Python library for data structures. This library provides more than 20 advanced data structures not available in the Python standard library.
10
10
11
+
## Installation
12
+
13
+
```bash
14
+
pip install pystrukts
15
+
```
16
+
17
+
## Data Structures
18
+
### Lists
19
+
-[x] Singly Linked Node
11
20
-[x] Singly Linked List
21
+
-[x] Doubly Linked Node
12
22
-[x] Doubly Linked List
13
23
-[x] Circular Linked List (Single, Double)
14
-
-[ ] Generic Tree
15
-
-[ ] Binary Search Tree
24
+
-[ ] Skip List
25
+
26
+
### Trees
27
+
-[x] Binary Tree
28
+
-[x] Generic Tree
29
+
-[x] Binary Search Tree
16
30
-[ ] Ternary Search Tree
17
31
-[ ] Suffix Tree
18
32
-[ ] AVL Tree
@@ -24,9 +38,12 @@ A Python library for data structures. This library provides more than 20 advance
0 commit comments