Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.21 KB

README.md

File metadata and controls

29 lines (19 loc) · 1.21 KB

SubsetSum

A Study on 'The Subset-Sum Problem'

Description

The goal of this project is to study different implementations of the solution to the well-known Subset-Sum Problem in terms of computational complexity and execution time. The implemented solutions are:

  • Brute Force
  • Branch and Bound
  • Meet in the Middle

The thid implementation presented the best results, with a computational complexity of O(2^(n/2)).

Repository Structure

\study - the written report on the study conducted is made available here

\src - contains the source code, written in C

Authors

The authors of this repository are Filipe Pires and João Alegria, and the project was developed for the Algorithms and Data Structures Course of the licenciate's degree in Informatics Engineering of the University of Aveiro.

For further information, please read our report or contact us at [email protected] or [email protected].