Skip to content

This repository explores through the world of Data Structures and a few standard algorithms using multiple programming languages.

License

Notifications You must be signed in to change notification settings

aadhityasw/Data-Structures-Algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structures and Algorithms

This repository explores through the world of Data Structures and a few standard algorithms using multiple programming languages.

Index

  1. Linked List
S.no Name Description
1 Linked List The implementation of a simple linked list.
2 Circular Linked List
3 Double Linked List
  1. Stack
S.no Name Description
1 Stack implementation of stack with complete code
2 Stack with cells as Nodes in C++ Stack implementation with cells of any type, implemented using templates in C++
  1. Queue
S.no Name Description
1 Queue implementation of queue with complete code
2 Queue with cells as Nodes in C++ Queue implementation with cells of any type, implemented using templates in C++
  1. Tree
S.no Name Description
1 Binary Tree
2 Binary Search Tree
3 AVL Tree
  1. Heap
S.no Name Description
1 Min heap
2 Max-Heap
  1. Hash Table

  2. Graph

S.no Name Description
1 Building Graphs Codes for building various categories of graphs
2 Depth First Traversal
3 Breadth First Traversal
4 Cycle Detection
5 Union Find
6 Dijkstra
7 Bellaman Ford
8 Longest and Shortest Paths
9 Minimum Spanning Tree
10 Topological Sort
  1. Trie
  1. Searching Algorithms
S.no Algorithm Name
1 Linear Search
2 Binary Search
  1. Sorting Algorithms
S.no Algorithm Name
1 Selection Sort
2 Bubble Sort
3 Counting Sort
4 Insertion Sort
5 Merge Sort
6 Quick Sort
7 Heap Sort
8 Radix Sort
  1. Catalan Numbers

  2. Document Distance

  3. Karatsuba Multiplication

  4. Peak Finder

  5. Rabin Karp

In this section, we deal with the library functions which can be used to simplify the implementations of the data structures used above, so as to reduce the programming time, and improve efficiency.

We will also deal with a few library classes and function which simplifies the smaller tasks, which are standard in nature, and need not be implemented from scratch everytime they are needed.

About

This repository explores through the world of Data Structures and a few standard algorithms using multiple programming languages.

Topics

Resources

License

Stars

Watchers

Forks