Java icon indicating copy to clipboard operation
Java copied to clipboard

All Algorithms implemented in Java

Results 922 Java issues
Sort by recently updated
recently updated
newest added

### What would you like to Propose? [Food and beverage brands](https://gotopackaging.com/product-category/custom-food-beverage-boxes/) have changed drastically in the past 5 to 6 years. The shift from simple plain boxes to custom packaging...

enhancement

- [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Java/blob/master/CONTRIBUTING.md). - [x] This pull request is all my own work -- I have not plagiarized it. - [x] All filenames are in PascalCase. -...

### What would you like to Propose? I would like to propose adding a new sorting algorithm — Tournament Sort — in the sorts package. Tournament Sort is a comparison-based...

enhancement
stale

### What would you like to share? This C++ program converts an infix expression (like A+B*C) into a postfix expression (A B C * +) using the STL stack. It...

stale
awaiting triage

## Description: This PR introduces a utility class ComplexNumberMultiplication in Java that multiplies two complex numbers represented as strings. ### Features: - Accepts two complex numbers in the format "a+bi"...

- [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Java/blob/master/CONTRIBUTING.md). - [x] This pull request is all my own work -- I have not plagiarized it. - [x] All filenames are in PascalCase. -...

### What would you like to Propose? Problem: Each module may have its own .env or application.properties, creating inconsistencies. Feature Request: Implement a shared configuration module (e.g., via Spring Cloud...

enhancement

### What would you like to Propose? **Title:** Add Topological Sorting Algorithm using Depth-First Search (DFS) --- ### 🧠 Overview Implement a **DFS-based topological sort** for directed acyclic graphs (DAGs)....

enhancement

### What would you like to Propose? **Title:** Add Sudoku Solver using Backtracking --- ### 🧠 Overview I’d like to contribute a **Sudoku Solver** algorithm using the **Backtracking technique**. This...

enhancement

## Description This PR adds an implementation to check whether a number is a power of four using bit manipulation. The algorithm ensures that: - The number is positive. -...