Skip to content

vamshikumarkurva/DataStructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DataStructures

Following are the few data structures implemeted in c++.

  1. Singly Linked List (with and without tail pointer)
  2. Doubly Linked List
  3. Stacks and Queues using Double linked lists
  4. Binary Search Tree
  5. AVL Tree (self-balancing BST)
  6. Heap/Priority Queue (Using the implicit binary tree representation of array)
  7. Sorting algorithms (Quick, Merge, Heap, Bubble, Selection)

More will be added as I keep learning more.

Compile the programs using

g++ program_name.cpp -std=c++11

References

  1. Data structures on Coursera
  2. Divide and Conquer Algorithms

About

Implementation of some of the data structures in c++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages