https://github.com/riwigefi/algorithms-java
Algorithms in Java is a repository that contains common algorithms implemented in Java. It aims to help learn Java language and algorithmic thinking.
https://github.com/riwigefi/algorithms-java
algorithms java
Last synced: about 2 months ago
JSON representation
Algorithms in Java is a repository that contains common algorithms implemented in Java. It aims to help learn Java language and algorithmic thinking.
- Host: GitHub
- URL: https://github.com/riwigefi/algorithms-java
- Owner: riwigefi
- License: mit
- Created: 2023-04-10T05:46:50.000Z (about 2 years ago)
- Default Branch: develop
- Last Pushed: 2023-04-10T05:55:54.000Z (about 2 years ago)
- Last Synced: 2025-01-14T12:17:26.463Z (4 months ago)
- Topics: algorithms, java
- Language: Java
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithms in Java
This repository contains common algorithms implemented in Java. It aims to help learn Java language and algorithmic thinking.## Algorithm List
The following is a list of algorithms currently included:1. Bubble Sort
2. Selection Sort
3. Insertion Sort
4. Quick Sort
5. Merge Sort
6. Heap Sort
7. Binary Search
8. Fibonacci Sequence
9. Greatest Common Divisor
10. Least Common Multiple## Usage
Each algorithm is located in a separate Java file. To use them, follow these steps:1. Clone this repository to your local machine.
2. Find the Java file of the algorithm you want to use.
3. Compile the file using your favorite Java IDE or command-line compiler.
4. Run the generated .class file.## Contribution
If you want to contribute to this repository, pull requests are welcome. Please make sure your code follows general Java coding conventions and includes necessary comments.