Skip to content

I Created various data structures using java, and also implemented many algorithms

Notifications You must be signed in to change notification settings

rayimanoj8/datastructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structures and Algorithms

Welcome to the Data Structures Repository! This repository is a collection of implementations and explanations of various data structures in computer science. Whether you're a beginner looking to understand fundamental concepts or an experienced developer seeking a quick reference, this repository has got you covered.

Table of Contents

Overview

  • Project Description

    This repository is a collection of implementations and explanations of various data structures in computer science
  • Key Features

    Implemented Data Structures are Linked List, Stacks, Queues, Trees, Heaps , Graphs Algorithms like Sorting, Searching , Graph algos etc.. keyfeatures
  • Usage Examples

    • Main.java
     import Queues.Queue;
     import Heaps.MinHeap;
     class Demo {
     	public static void main(String args[]){
     		int arr[] = {12,3,8,23,16};
     		Queue<Integer> queue = new MinHeap<>();
     		for(int i : arr){
     			queue.enque(i);
     		}     
     	}
     }
    

Features

  • Implementation of common data structures (e.g., linked lists, trees, graphs)
  • Efficient algorithms for sorting and searching

How-to-Use

  1. Clone the repository.
  2. Navigate to the desired data structure or algorithm folder.
  3. Choose the programming language.
  4. Run the code and explore the implementations.

Contributing

Contributions are welcome! Follow these steps to contribute:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Commit your changes.
  4. Push to your fork and submit a pull request.

About

I Created various data structures using java, and also implemented many algorithms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages