Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a3b7636

Browse files
Updated README.md
1 parent 36c26d7 commit a3b7636

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

‎README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,30 @@
11
# Python-Data-Structures
2-
Python Data Structures
2+
This Repository contain the source code and example questions of different Python Data Structures.
3+
4+
There are two types of Data Structures Algrithms:
5+
6+
## i) Linear Data Structures
7+
8+
1. Stack
9+
2. Queue
10+
3. Hash Map / Hash Table
11+
4. Linked List
12+
> - Single Linked List
13+
> - Doubly Linked List
14+
> - Circular Linked List
15+
5. Heap
16+
> - Max Heap
17+
> - Min Heap
18+
## ii) Non-Linear Data Structures
19+
6. Tree
20+
7. Binary Search Tree (BST)
21+
> - In-order Traversal ~ Left, Node, Right (LNR)
22+
> - Pre-order Traversal ~ (NLR)
23+
> - Post-order Traversal ~ (LRN)
24+
25+
8. Graphs
26+
27+
### 1. Stack
28+
Stack is a linear data structure. It works on the principle of Last-In-First-Out (LIFO).
29+
30+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /