Java icon indicating copy to clipboard operation
Java copied to clipboard

All Algorithms implemented in Java

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

This is a Rabin-Karp Algorithm for Pattern Searching ### **Describe your change:** - [x] Add an algorithm? - [ ] Fix a bug or typo in an existing algorithm? -...

An important issue in computer science is pattern searching. Pattern searching methods display the search results when we do a string search in a database, browser, or notepad/word file. ###...

In the class `com.thealgorithms.datastructures.trees.RedBlackBST`, the preorder traversal is ```java public void printTreepre(Node node) { if (node == nil) { return; } System.out.print( ((node.color == R) ? " R " :...

bug
help wanted
dont-close

### **Describe your change:** - [x] Add an algorithm? - [x] Fix a bug or typo in an existing algorithm? - [x] Documentation change? #### References ### **Checklist:** - [x]...

stale

### **Describe your change:** - [x ] Add an algorithm? - [ ] Fix a bug or typo in an existing algorithm? - [ ] Documentation change? #### References ###...

**Describe the bug** in datastructures/heaps/GenericHeap miss package paths **Expected behavior** ![image](https://user-images.githubusercontent.com/108655157/180121733-3a4b2692-0918-405e-9cdd-075fcb5a0afa.png) **Screenshots** ![image](https://user-images.githubusercontent.com/108655157/180122190-99c339b0-a013-454b-ae60-48653d63f64a.png) **Device Specification** **Additional context** Add any other context about the problem here.

I added backtracking algorithm for SubSet which is in sequence with the way of Skiena Book containing Construct Candidate, is a solution and process solution

### **Describe your change:** - [ ] Add an algorithm? - [ ] Fix a bug or typo in an existing algorithm? - [ ] Documentation change? #### References ###...

Add a [K-D tree](https://en.wikipedia.org/wiki/K-d_tree). There is no implementation of that data structure here yet. Could be a **good first issue**.

enhancement
help wanted
good first issue
dont-close

### **Describe your change:** - Added: Javadoc comments - Changed: made some minor typo fixes - Fixed: missing package - Changed: converted author and link comment into Javadoc comment