Skip to content

A collection of data structures and algorithms implemented in Java as part of a Data Structures and Algorithms course. This repository includes implementations of linked lists, stacks, queues, trees, heaps, and common algorithms like searching and sorting.

Notifications You must be signed in to change notification settings

edadic/DataStructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DataStructures in Java

This repository contains implementations of fundamental data structures and algorithms in Java, created as part of a Data Structures and Algorithms course.

Implemented Data Structures

1. Linked Lists

  • Singly Linked List
  • Doubly Linked List

2. Stacks

  • Array-based Stack
  • Linked List-based Stack

3. Queues

  • Simple Queue
  • Priority Queue

4. Trees

  • Binary Tree
  • Binary Search Tree (BST)
  • AVL Tree (Self-balancing Binary Search Tree)

5. Heaps

  • Min-Heap
  • Max-Heap

Implemented Algorithms

Searching Algorithms

  • Linear Search
  • Binary Search

Sorting Algorithms

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Heap Sort

About

A collection of data structures and algorithms implemented in Java as part of a Data Structures and Algorithms course. This repository includes implementations of linked lists, stacks, queues, trees, heaps, and common algorithms like searching and sorting.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages