Explore the Vector API, its associated terminologies, and how to leverage it.
Also find me here:
Baeldung Author
Bhaskar Ghosh
Hi, I am Bhaskar Ghosh Dastidar. Software Engineer. Foodie. Cinephile. INTP.
Here's what I've written (so far):
Baeldung on Java
- All
- Core Java (7)
- Java String (3)
- Java Collections (3)
- Java (3)
- Java Streams (2)
- Java Map (2)
- Persistence (1)
- Networking (1)
- Java List (1)
- Java IO (1)
- Java Concurrency (1)
- Java Array (1)
- JVM (1)
- JSON (1)
Creating Custom Iterator in Java
Filed under Java Collections
Learn how to create a custom iterator in Java and apply it to our collections.
Overriding hashCode() And equals() For Records
Filed under Core Java
Learn how records provide us with a default implementation of equals() and hashCode() methods.
Difference Between parallelStream() and stream().parallel() in Java
Filed under Java Concurrency, Java Streams
Explore the ways we can create parallel Streams from a Collection data source.
Copying All Keys and Values From One Hashmap Onto Another Without Replacing Existing Keys and Values
Filed under Java Map
Explore ways to copy the entries from one HashMap to another while preserving the existing entries of the target HashMap.
Stream to Iterable in Java
Filed under Java Streams
Learn different ways for using a Stream as an Iterable.
Convert an ArrayList of Object to an ArrayList of String Elements
Filed under Java List
Discover strategies to normalize lists of objects to strings in Java.
Reversing a Stack in Java
Filed under Java Collections
A quick and practical guide to reversing a Stack in Java.
Find the First Non Repeating Character in a String in Java
Filed under Java String
Explore different approaches to finding the first non-repeating character in a string.
Baeldung on Computer Science
- All
- Trees (2)
Understanding Threaded Binary Trees
Filed under Trees
Learn about threaded binary trees and explore the different operations that can be performed on them.
Difference Between Full, Complete, and Perfect Tree
Filed under Trees
Explore the essential properties of full binary trees, complete binary trees, and perfect binary trees.