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

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

🎯 **Computational Geometry Algorithms Library - Java Implementation** 🚀 Overview A comprehensive collection of industry-grade computational geometry algorithms implemented in Java with 100% working code, detailed line-by-line comments, complete dry...

### What would you like to Propose? some of the best and unique geometry algorithms that you can implement under src/main/java/com/thealgorithms/geometry/ - each is elegant, mathematically rich, and practical in...

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. - [ ] All filenames are in PascalCase....

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

### What would you like to Propose? Made an best and efficient LineIntersection java code for geometry ### Issue details A feature am adding in geometry ### Additional Information _No...

enhancement

### What would you like to Propose? While exploring the Graph folder and its problems, I noticed that the implementation of an important graph concept — Disjoint Set (Union-Find) —...

enhancement

### What would you like to Propose? I would like to propose the addition of **LU decomposition** algorithm under `src/main/java/com/thealgorithms/matrix` This algorithm is widely used in: - Solving systems of...

enhancement

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

Title: Added a Optimized Fibonacci Implementation (O(n) Version) Changes included: - Added file FibonacciOptimized.java in src\main\java\com\thealgorithms\recursion. The file includes Optimized Fibonacci method. Benefits: - Avoids exponential runtime of the simple...