ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

66 results

Code Granular
HashMap vs SynchronizedMap vs ConcurrentHashMap | Java Concurrency Explained

Choosing the wrong Map in Java can silently kill performance or break your multithreaded code ⚠️ In this video, we deep-dive ...

19:49
HashMap vs SynchronizedMap vs ConcurrentHashMap | Java Concurrency Explained

4 views

4 days ago

codeWithAshish
HashMaps-Introduction,Hashmap vs ArrayList,memory allocation

A high-level look at how HashMap stores data internally. Buckets, collisions, and storage and why HashMap is used instead of ...

17:00
HashMaps-Introduction,Hashmap vs ArrayList,memory allocation

48 views

7 days ago

TheQuirkyLearner
Java HashSet Explained from Scratch (Internals & Implementation)

In this video, I explain how Java HashSet works internally and why it is built on top of HashMap. You will learn: • What a HashSet ...

7:08
Java HashSet Explained from Scratch (Internals & Implementation)

0 views

4 days ago

Code with Katie
Isomorphic Strings LeetCode - Java

In this video, I solve the "Isomorphic Strings" LeetCode problem using Java. Problem link: ...

7:49
Isomorphic Strings LeetCode - Java

105 views

4 days ago

Code Kage
GFG | Substrings with K Distinct | Sliding Window + HashMap | Java

In this video, we solve the problem “Substrings with K Distinct” using an efficient Sliding Window technique. You are given a ...

5:55
GFG | Substrings with K Distinct | Sliding Window + HashMap | Java

79 views

3 days ago

Orkhan Gasanov
LeetCode - 560. Subarray Sum Equals K | Prefix sum | Java (V2 - Better Explanation)

00:00 - Step-by-Step Explanation Java Code ...

15:44
LeetCode - 560. Subarray Sum Equals K | Prefix sum | Java (V2 - Better Explanation)

21 views

22 hours ago

SyntaxSageNik
LeetCode 706:Design HashMap from Scratch-Java Separate Chaining! 🔑🚀😊👍

Built LeetCode 706 Design HashMap NO built-in Library! put/get/remove method Core: Buckets (lists) + hash % prime. Collisions?

6:28
LeetCode 706:Design HashMap from Scratch-Java Separate Chaining! 🔑🚀😊👍

0 views

4 days ago

RuchiCodes
Java Collection Framework Hierarchy Explained | Collection Interfaces & Classes (Beginner)

n this video, we will deeply understand the Java Collection Framework Hierarchy in a very simple and beginner-friendly way.

4:24
Java Collection Framework Hierarchy Explained | Collection Interfaces & Classes (Beginner)

12 views

13 hours ago

CodeX Prasoon
Collection Framework Lecture - 07 | Map interface | HashMap , LinkedHashMAp , Hashtable , TreeMap

क्लास कास्ट एक्सेप्शन ठीक है अ क्लास java डॉट lang डॉट इंटीजर कैन नॉट बी ...

1:19:27
Collection Framework Lecture - 07 | Map interface | HashMap , LinkedHashMAp , Hashtable , TreeMap

54 views

4 days ago

IfElseWhatNow
HashMap in java||Java for beginners || #beginners #hashmap #java #tamil #interview #freshers
6:52
HashMap in java||Java for beginners || #beginners #hashmap #java #tamil #interview #freshers

18 views

2 days ago

Web Dev Mastery
Java Collections Framework Complete Tutorial (One Shot) | DSA in Java Full Course #16

Complete Java Collections Framework in 1 Video - Java Collections Framework | DSA in Java Full Course | Master Data ...

1:40:33
Java Collections Framework Complete Tutorial (One Shot) | DSA in Java Full Course #16

95 views

2 days ago

Dean Greer
Java Foundations - A Beginner Course in Java - Module 7 - Java Collections

In this latest installment, I cover the Collections Framework. This framework is basically how Java deals with data structures.

58:20
Java Foundations - A Beginner Course in Java - Module 7 - Java Collections

3 views

1 day ago

SyntaxSageNik
LeetCode 49: Group Anagrams - HashMap + Sort Magic in Java! 🚀😊👍

LeetCode 49 Group Anagrams! Group strings with the same chars & freqs. Pro Tip: Sorted chars = anagram key! "eat","tea" both ...

6:15
LeetCode 49: Group Anagrams - HashMap + Sort Magic in Java! 🚀😊👍

0 views

6 days ago

BitBro
Day 4/100 – Ransom Note Problem in Java | HashMap Frequency Trick Explained

Day 4 of 100 Days of Code – Solving Ransom Note Using HashMap in Java In this video, we solve the famous LeetCode 383 ...

14:33
Day 4/100 – Ransom Note Problem in Java | HashMap Frequency Trick Explained

2 views

4 days ago

Code Kage
GFG | Subarrays With At Most K Distinct Integers | Sliding Window + HashMap | Java

In this video, we solve the problem “Subarrays With At Most K Distinct Integers” using an efficient Sliding Window technique ...

9:40
GFG | Subarrays With At Most K Distinct Integers | Sliding Window + HashMap | Java

117 views

4 days ago

Yashaswee Kesharwani
Two Sum Problem Explained | Arrays and Hashing | Java | DSA | LeetCode | Naive and Optimised

Two Sum Problem Explained | Java | DSA | LeetCode | From Naive to Optimized | Step by Step In this video, I solve and explain ...

7:15
Two Sum Problem Explained | Arrays and Hashing | Java | DSA | LeetCode | Naive and Optimised

5 views

5 days ago

CodeLucky
Subarray Sum Equals K - LeetCode 560 - Optimized HashMap Solution (O(N))

Learn how to solve the "Subarray Sum Equals K" problem (LeetCode 560) using the optimized Prefix Sum and HashMap ...

4:51
Subarray Sum Equals K - LeetCode 560 - Optimized HashMap Solution (O(N))

3 views

5 days ago

Code Granular
HashSet vs SynchronizedSet vs CopyOnWriteArraySet (Concurrency Explained)

Struggling with thread-safe Java Sets? Choosing the wrong Set implementation can lead to performance bottlenecks, race ...

18:30
HashSet vs SynchronizedSet vs CopyOnWriteArraySet (Concurrency Explained)

0 views

17 hours ago

Hyphen45 Development Tutorials
Data Structures & Objects | Intermediate Minecraft Plugin Development Tutorial #2

This video gives a summary of common Java data structures such as the ArrayList, HashSet, and HashMap. It also gives a ...

17:37
Data Structures & Objects | Intermediate Minecraft Plugin Development Tutorial #2

0 views

4 days ago

CodeLucky
Design HashMap Implementation - LeetCode 706 - Data Structures & Algorithms

Learn how to design a HashMap (Hash Table) from scratch! In this video, we break down one of the most common coding ...

3:41
Design HashMap Implementation - LeetCode 706 - Data Structures & Algorithms

0 views

9 hours ago

Anand Thakar
Java intervire preparation part-5 | HashMap internal working | @andythakar | Anand Thakar

Follow Me ------------------------------------------------------------------ Instagram - https://www.instagram.com/andythakar Links ...

9:00
Java intervire preparation part-5 | HashMap internal working | @andythakar | Anand Thakar

0 views

1 day ago

CodeLucky
Brick Wall - LeetCode 554 - Find Minimum Crossed Bricks (Visual Explanation)

Learn how to solve the Brick Wall problem (LeetCode 554) with a clear, visual step-by-step guide! In this video, we break down ...

4:37
Brick Wall - LeetCode 554 - Find Minimum Crossed Bricks (Visual Explanation)

2 views

4 days ago

Prof. Hu: No student left behind
DSAInsights.com: Stop Memorizing, Start Seeing - Data Structures & Algorithms

Stop memorizing Data Structures and Algorithms — and start seeing how they actually work. In this video, we introduce ...

4:15
DSAInsights.com: Stop Memorizing, Start Seeing - Data Structures & Algorithms

17 views

4 days ago

algopk
Learn Array in Data Structure | Animated Explanation + Code Examples for Beginners

Array Data Structure Complete Tutorial with Animation & Coding Examples ...

9:56
Learn Array in Data Structure | Animated Explanation + Code Examples for Beginners

6 views

17 hours ago

The Cumulonimbus 'dot' AI Opera
Design hashmap from scratch

Perfect the implementation is decent and we are so we have been able to demonstrate and implement hash table from scratch ...

14:29
Design hashmap from scratch

0 views

6 days ago