Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 3.89 KB

README.md

File metadata and controls

63 lines (43 loc) · 3.89 KB

Data Structures using Python

Data Structure

I highly recommend you all to watch this course for learning data-structures from scratch Course Attribution

The concept of Data Structures can be implemented using any Programming language but I chose Python. Topics that are covered are

Searching

  1. Binary Search

Sorting

  1. Bubble Sort
  2. Insertion Sort
  3. Selection Sort
  4. Merge Sort
  5. Quick Sort

Stack

  1. Stack

Queue

  1. Queue
  2. DeQueue

Linked List

  1. Singly Linked List
  2. Doubly Linked List

Trees

  1. Binary Tree

Tree Traversal

  1. Breadth First Search
  2. Depth First Search

Heap

  1. Heap
  2. Priority Queue

Graph

  1. Graph
Please give a star to the repo if it helped you in any manner. Visit the data-structure for python repo