Jyotiprakash Mishrablog.jyotiprakash.org·Nov 29, 2024Collections in JavaIn the world of programming, data is king. Everything we design, every application we build, revolves around efficiently managing and processing data. From a simple list of tasks in a to-do app to managing millions of customer records in an enterpris...90 readsJava
Vaishnavi Dwivedivaishd.hashnode.dev·Nov 18, 2024Java Collections FrameworkImagine you're in a busy kitchen, using different tools to prepare a meal—this is similar to the Java Collections Framework. It provides a set of classes and interfaces to store, manage, and retrieve data in your programs. Just like you have differen...Learn DSA - JAVAJava List, Set, Map, Queue
Mahak Pandeymahakpandeyofficial.hashnode.dev·Jul 4, 2024How "Add" and "Offer" Work Differently in Queue StructuresIn the realm of data structures, the queue stands out for its simplicity and utility. A queue follows the First-In-First-Out (FIFO) principle, making it essential for managing tasks where order matters. Think of it as a line at a grocery store – the ...3 likesJCF
Mahak Pandeymahakpandeyofficial.hashnode.dev·Jul 4, 2024Top Queue Implementation Techniques You Should Know in Java.When choosing the best method to implement a queue in Java, it depends on the specific requirements of your application. Different Queue implementations in the Java Collections Framework (JCF) offer various advantages and trade-offs. Let’s explore so...10 likesJCF
Chetan Dattachetan77.hashnode.dev·Jun 4, 202418 Java - Collection FrameworkWhat is Java Collections Framework - JCF? JCF Added in Java version 1.2 Collections is nothing but a group of Objects. Present in java.util package. Framework provide us the architecture to manage these "group of objects" i.e add, update, delete,...94 readsJavaJava Collections Framework
Partha Choudhuryblog.partha51613.com·Apr 26, 2024Internal workings of a HashMap: How it works?A HashMap is a part of the Java's Collection and is used to store key-value pairs. Each key is mapped to a single value, and while duplicate keys are not allowed, duplicate values are permitted. We will learn about how a HashMap works internally, how...41 readsJava Collections Framework