Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

A Repository for algorithms in C, C++, Python and Java

Results 115 Algorithms issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** - This algorithm can convert any entered number into international system of words. **Describe the solution you'd like** - Using...

**Is your feature request related to a problem? Please describe.** - The problem is to efficiently compute the convex hull of a set of points in a 2D plane. **Describe...

**Is your feature request related to a problem? Please describe.** Knight's tour problem is a very good question to practice and get deep understanding in backtracking. `A knights tour is...

**Is your feature request related to a problem? Please describe.** This algorithm will determine the subset sum whose value is k selected from a set of elements using backtracking rather...

Greedy Coloring Algorithm: The greedy coloring algorithm assigns colors to vertices one by one, using the smallest possible color that is not used by any of its neighboring vertices. It...

I want to add The Levenshtein distance (Edit distance) Problem using Dynamic Programming in java. ![Screenshot 2023-05-31 000111](https://github.com/Kumar-laxmi/Algorithms/assets/105747510/7287aa58-6bb8-45ce-a060-e85bcf26e48c) Please assign me this issue.

Stale PR

**Miller-Rabin Primality Test:** Is your feature request related to a problem? Please describe. Determining whether a given number is prime or composite is a common problem in number theory. Traditional...

Cryptography
C
C++
Java
SSOC23
SSOC-INTERMEDIATE

🛠️ Issue #808 👨‍💻 Changes proposed I have added code for Flood Fill Algorithm in C and C++. ✔️ Check List (Check all the applicable boxes) - [ ✔️] My...

C
C++
Under Review
arrays
SSOC23

**Is your feature request related to a problem? Please describe.** I have noticed many java programs: - have wrong comments used such as caesarcipher.java uses "" not // or /**/...