Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 3.44 KB

README.md

File metadata and controls

52 lines (39 loc) · 3.44 KB

jumbocs

This is a small size data structure and algorithm library for those who are looking for implementation of some of the famous data structures and algorithms.

This library can also be used as a reference by anyone who has already had experience with software engineering and coding.

Fundamental Data Structure

  1. Tic Tac Implementation
  2. Singly Linked List
  3. Circularly Linked List
  4. Round Robin CPU Scheduling Algorithm
  5. Doubly Linked List

Recursion

  1. Factorial Function
  2. English Ruler
  3. Binary Search
  4. File System
  5. Linear Recursion
  6. Binary Recursion

Stacks Queues and Deques

  1. Array Stack
  2. Linked Stack
  3. Reversing an Array Using a Stack
  4. Matching Parentheses and HTML Tags
  5. Array Queue
  6. Linked List Queue
  7. Circular Queue
  8. Josephus Problem
  9. Double-Ended Queues
  10. Exercises

List and Iterator ADTs

  1. Array List
  2. Positional Lists
  3. Array List Iterator
  4. Positional List Iterator

Tree

  1. Tree ADT
  2. Abstract Tree
  3. Abstract Binary Tree
  4. Linked Binary Tree Impl
  5. Priority Queue