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

- [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. -...

Description : New Feature - Added Articulation Point and Bridge Algo. Helps to find the articulation points and bridges in graph. Detailed Explanation is added in code. - [x] I...

- [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? ### New Algorithm under https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/maths/ **File Name:** PowerUsingBinaryExponentiation.java **What ?** To calculate **long pow(int base, int exponent, int mod)** , where mod is...

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 want to propose Kruskal's Algorithm. Kruskal's Algorithm is used to find the minimum spanning tree for a connected weighted graph. The main...

enhancement

### What would you like to Propose? Algorithm to find the Minimum Spanning Tree of a graph using Prim's algorithm. The working of Prim’s algorithm can be described by using...

enhancement

Added Binary to gray and gray to binary convertor within the conversions package For eg: Binary Input = 100010 will be converted to gray =110011 and Gray = 111111 to...

### What would you like to Propose? I would like to propose documenting the "Closest Pair of Points" algorithm using the Sweep Line Algorithm in a structured and organized manner....

enhancement

Solution to Nth Fibonacci in O(1) time complexity. - [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....