Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nevinmathew/combination-generator
designed to generate combinations from a specified set of objects using binary representation. The focus is on generating all possible combinations for a set of 6 objects.
https://github.com/nevinmathew/combination-generator
binary binary-addition combinatorial-algorithms object-combinations
Last synced: 8 days ago
JSON representation
designed to generate combinations from a specified set of objects using binary representation. The focus is on generating all possible combinations for a set of 6 objects.
- Host: GitHub
- URL: https://github.com/nevinmathew/combination-generator
- Owner: nevinmathew
- Created: 2022-11-26T20:02:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-03T06:18:31.000Z (about 1 year ago)
- Last Synced: 2024-11-07T10:20:36.504Z (about 2 months ago)
- Topics: binary, binary-addition, combinatorial-algorithms, object-combinations
- Language: Java
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Combination Generator
## Overview
The CombinationGenerator class generates combinations from a given set of objects using binary representation. It outputs combinations in binary format and displays the corresponding objects for each combination.## Additional Information
This program generates all possible combinations for 6 objects. Binary addition is performed up to 2^6=64 to obtain these combinations.