Skip to content

Join me on an adventure where I tackle data structures and algorithms using Java, sharpening my problem-solving skills along the way. ๐Ÿ–ฅ๏ธ

Notifications You must be signed in to change notification settings

palak-463/JavaDSA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

9 Commits
ย 
ย 

Repository files navigation

Java DSA

/*
Dedicated to my favourite programming language.
*/

public class ReadMe {

public static void main(String [] args) 
{
    System.out.println("๐Ÿ–ฅ๏ธ Java DSA");
    System.out.println("This repository contains daily solutions for 450 questions from the DSA Sheet by Love Babbar.");
    System.out.println("Each solution is designed to accept input from the user.");
    System.out.println("Every solution includes the algorithm and approach used to solve the problem in the comment before the code.");
    System.out.println("For every solution, you will also find the space and time complexity provided below the code as a comment.");
    System.out.println("Find the full sheet at: https://www.geeksforgeeks.org/dsa-sheet-by-love-babbar/");
    System.out.println("๐Ÿ—‚๏ธ Topic-Wise Distribution of 450 Questions: ");
    printTopicDistribution();
}
public static void printTopicDistribution() 
{
    String[] topics = 
    {
        {"๐Ÿ“Š Arrays"},
        {"๐Ÿ”ข Matrix"},
        {"๐Ÿงต Strings"},
        {"๐Ÿ” Searching and Sorting"},
        {"๐Ÿ”— Linked List"},
        {"๐Ÿงฎ Bit Manipulation"},
        {"๐Ÿ’ก Greedy"},
        {"๐Ÿ”„ Backtracking"},
        {"๐Ÿ“ˆ Dynamic Programming"},
        {"๐Ÿ—„๏ธ Stacks and Queues"},
        {"๐ŸŒณ Binary Trees"},
        {"๐ŸŒฒ Binary Search Trees"},
        {"๐Ÿ“‰ Graphs"},
        {"๐Ÿ”๏ธ Heap"},
        {"๐Ÿ”  Trie"}
    };
}

}

/*
Suggestions or feedback with respect to the code are welcome and appreciated.
*/

About

Join me on an adventure where I tackle data structures and algorithms using Java, sharpening my problem-solving skills along the way. ๐Ÿ–ฅ๏ธ

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published