Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8654633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:50:11+00:00 2026-06-12T14:50:11+00:00

Possible Duplicate: Making change recursively: How do I modify my algorithm to print all

  • 0

Possible Duplicate:
Making change recursively: How do I modify my algorithm to print all combinations?

In coin pattern counting problem(Given a value N and a fixed set of coins,we have to calculate the number of combinations of coins that would add up to N.), if we want to print the combinations rather counting the combinations, What is the approach ? Do I have to use dynamic programming for that ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T14:50:12+00:00Added an answer on June 12, 2026 at 2:50 pm

    Yes, you need it. Assuming dp[i] equals the number of combinations that add up to i then the following pseudocode prints all combinations:

    print_combinations(amount_left, current_coin):
        if amount_left == 0:
            print "\n"
            return
        if current_coin == num_coins:
            return
        if dp[amount_left - coins[current_coin]] > 0:
            print coins[current_coin], " "
            print_combinations(amount_left - coins[current_coin], current_coin)
        print_combinations(amount_left, current_coin + 1)
    

    This function prints all the combinations of coins [current_coin .. last_coin] that add up to amount_left. So the initial call would be print_combinations(N, 0), as you can see the dynamic programming table dp[] helps us decide if we recurse using the current coin (we only recurse if there is at least one combination adding up to the new amount left which equals amount_left - coins[current_coin]).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: PHP take all combinations I'm thinking of making something in PHP that
Possible Duplicate: Making sure a web page is not cached, across all browsers I
Possible Duplicate: How to change format of date/time? In my program I'm making an
Possible Duplicate: Making a generic property I'm not quite sure how to do that,
Possible Duplicate: I am making some parts of java image transparent by some code,
Possible Duplicate: CSS Opacity Property I'm making a layer on an image which has
Possible Duplicate: Why use getters and setters? Is there any advantage to making methods
Possible Duplicate: Strip html from strings in python While making a small browser like
Possible Duplicate: Complex CSS selector for parent of active child I'm making a CSS
Possible Duplicate: How can I disable the UITableView selection highlighting? I am programatically making

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.