Skip to content
This repository has been archived by the owner on Jun 12, 2021. It is now read-only.

Latest commit

 

History

History

data-structures

Data Structures (IT351)

Starter programs on Data Structures and Algorithms written in C.

Array

  • 2D Array Insertion, Deletion, Display

Stack

  • Duplicating a Stack
  • Infix to Postfix
  • Prefix Evaluation
  • Postfix Evaluation
  • 3 Stacks using 1 Array
  • Sorting the 3 Stacks (previous problem)

Queue

Linked List

  • Slideshow
  • Image Viewer

Tree

  • Binary Tree
  • Ternary Tree
  • Tree using Stack
  • Sorting using Heap Tree
  • Huffman Tree

Sorting & Searching

  • Hash Search
  • Binary Search
  • Merge Sort
  • Quick Sort
  • Bucket Sort