Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
/ DataStructures Public archive

Data Structures Repo. Contain implementation of various basic data structures.

Notifications You must be signed in to change notification settings

Vikrant0-7/DataStructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About

This is repository contains implementations of various data structures which I made as college assignment. Data structures includes.

  • Stacks
    • Array implementation of stack
    • Linked list implementation of stacks
  • Queues
    • Queue with linked lists
    • Queue with array
    • Queue with stacks
    • Double ended Queue with linked list
  • Binary Search Trees
  • Heaps
    • Min heap
    • max heap
  • AVL Trees
  • Dynamic Array Note: Implementation of AVL is currently not complete. It lacks ability of deleting nodes. Although inseartion works fine.