https://github.com/developernidhisingh/java
This collection contains key concepts, examples, and usage of Java's Standard Template Library (STL) equivalents, including collections, generics, and utilities.
https://github.com/developernidhisingh/java
java
Last synced: 10 months ago
JSON representation
This collection contains key concepts, examples, and usage of Java's Standard Template Library (STL) equivalents, including collections, generics, and utilities.
- Host: GitHub
- URL: https://github.com/developernidhisingh/java
- Owner: developernidhisingh
- Created: 2023-09-10T02:11:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T18:20:17.000Z (almost 2 years ago)
- Last Synced: 2025-03-29T20:27:00.528Z (over 1 year ago)
- Topics: java
- Language: Java
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java STL Notes
Welcome to the Java STL Notes repository! This collection contains key concepts, examples, and usage of Java's Standard Template Library (STL) equivalents, including collections, generics, and utilities.
## Overview
Java's standard libraries offer a range of data structures and algorithms similar to STL in C++. This repository provides notes and examples on:
- **Collections Framework**: `List`, `Set`, `Map`, `Queue`, etc.
- **Generics**: Type-safe operations with collections.
- **Utility Classes**: `Collections`, `Arrays`, `Objects`, etc.
## Key Topics
- **Lists**: `ArrayList`, `LinkedList`
- **Sets**: `HashSet`, `LinkedHashSet`, `TreeSet`
- **Maps**: `HashMap`, `LinkedHashMap`, `TreeMap`
- **Queues**: `LinkedList`, `PriorityQueue`
- **Utilities**: Sorting, searching, and manipulating collections