Skip to content

Implementing all popular problems of data structures and algorithm

License

Notifications You must be signed in to change notification settings

ajaybiswas22/ds-and-algo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ds-and-algo

Implementing all popular problems of data structures and algorithm.

Under Development

Implemented Data Structure

Linked List

  • Singly Linked List
  • Doubly Linked List

Implemented Algorithms

Searching

  • Linear Search (Iterative and Recursive)
  • Binary Search (Iterative and Recursive)
  • Depth First Search (Iterative and Recursive)
  • Breadth First Search (Iterative and Recursive)
  • Finding number of Islands using DFS

Sorting

  • Bubble Sort
  • Modified Bubble Sort
  • Recursive Bubble Sort
  • Insertion Sort
  • Selection Sort
  • Quick Sort
  • Merge Sort
  • Radix Sort
  • Topological Sort