Skip to content

Implementation of coin cashier machine algorithm to return minimum number of coins that add up to the total denomination given.

Notifications You must be signed in to change notification settings

ishanguliani/Cashier-Machine-Using-Basic-Knapsack-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Cashier Machine Using Basic Knapsack Algorithm

Elementary greedy algorithm used by cashiers all over the world millions of times per day.

This is a C++ implementation of coin cashier machine algorithm to return minimum number of coins that add up to the total denomination given.

Target Complexity : O(n)

Problem Description

The goal in this problem is to find the minimum number of coins needed to change the input value (an integer) into coins with denominations 1, 5, and 10.

Input Format. The input consists of a single integer 𝑚.
Constraints. 1 ≤ 𝑚 ≤ 103.
Output Format. Output the minimum number of coins with denominations 1, 5, 10 that changes 𝑚.

About

Implementation of coin cashier machine algorithm to return minimum number of coins that add up to the total denomination given.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages