Skip to content

Rishi2003Das/DSA-CompleteCodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structures and Algorithms in Java

License Java Contributions

Welcome to the Data Structures and Algorithms (DSA) in Java repository! This repository is a collection of my solutions to various DSA problems, implemented in Java. The problems cover a wide range of topics, including Dynamic Programming, Tries, Arrays, HashMaps, Heaps, Stacks, Queues, and LinkedLists.

📚 Table of Contents

Introduction

This repository is designed to help you enhance your understanding of data structures and algorithms through practical implementation in Java. Whether you are preparing for coding interviews, academic exams, or just improving your problem-solving skills, these implementations will be a valuable resource.

Topics Covered

The repository includes solutions for problems in the following areas:

  • Dynamic Programming: Optimized solutions using memoization and tabulation techniques.
  • Tries: Efficient data retrieval using prefix trees.
  • Arrays: Manipulation and algorithms involving linear data structures.
  • HashMap: Efficient key-value pair management and hashing techniques.
  • Heaps: Implementation of priority queues and heap-based algorithms.
  • Stacks: LIFO data structure applications.
  • Queues: FIFO data structure applications.
  • LinkedLists: Singly and doubly linked list operations.

Getting Started

To get started with this repository:

  1. Clone the repository:

    git clone https://github.com/yourusername/DSA-Java.git
  2. Navigate to the project directory:

    cd DSA-Java
  3. Open in your favorite IDE:

    • Import the project into your preferred Java IDE (e.g., IntelliJ IDEA, Eclipse).
  4. Explore and Run:

    • Browse through the folders and run the Java files for different DSA topics.

Folder Structure

The repository is organized as follows:

DSA-Java/
│
├── DynamicProgramming/
│   ├── Problem1.java
│   ├── Problem2.java
│   └── ...
│
├── Tries/
│   ├── TrieImplementation.java
│   └── Problem1.java
│
├── Arrays/
│   ├── ArrayProblem1.java
│   ├── ArrayProblem2.java
│   └── ...
│
├── HashMap/
│   ├── HashMapProblem1.java
│   └── ...
│
├── Heaps/
│   ├── HeapImplementation.java
│   └── ...
│
├── Stacks/
│   ├── StackProblem1.java
│   └── ...
│
├── Queues/
│   ├── QueueProblem1.java
│   └── ...
│
└── LinkedLists/
    ├── SinglyLinkedList.java
    ├── DoublyLinkedList.java
    └── ...

How to Contribute

Contributions are always welcome! If you have a better solution, find a bug, or want to add new problems, feel free to open an issue or submit a pull request.

  1. Fork the repository:
    • Click the "Fork" button on the top right.
  2. Create a new branch:
    git checkout -b feature-branch-name
  3. Make your changes and commit:
    git commit -m "Description of the feature added or changes made"
  4. Push your changes:
    git push origin feature-branch-name
  5. Create a pull request:
    • Go to the repository on GitHub and click "New Pull Request".

License

This project is licensed under the MIT License - see the LICENSE file for details.


Feel free to customize the content as per your specific needs!

About

Contains all the important Java Coding file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages