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 7986251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:48:15+00:00 2026-06-04T11:48:15+00:00

I need an algorithmic solution in c++ for the partition-problem Simple explanation: Find all

  • 0

I need an algorithmic solution in c++ for the partition-problem

Simple explanation: Find all sums that get a number n.
For example

  • Input: 5
  • Output:
    • 11111
    • 2111
    • 311
    • 41
    • 5
    • 221
    • 23

This problem seems so easy, but I couldn’t find a solution. I’m close to make this bruteforce, because the highest input is 11. The articles about that problem are highly mathematic and I don’t really get it.

Thank you all!

  • 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-04T11:48:16+00:00Added an answer on June 4, 2026 at 11:48 am
    /*
    E.g.
    input number:5
    5
    1 4
    1 1 3
    1 1 1 2
    1 1 1 1 1
    1 2 2
    2 3
    */
    #include <iostream>
    #include <vector>
    
    using namespace std;
    
    void print (vector<int>& v, int level){
        for(int i=0;i<=level;i++)
            cout << v[i] << " ";
        cout << endl;
    }
    
    void part(int n, vector<int>& v, int level){
        int first; /* first is before last */
    
        if(n<1) return ;
        v[level]=n;
        print(v, level);
    
        first=(level==0) ? 1 : v[level-1];
    
        for(int i=first;i<=n/2;i++){
            v[level]=i; /* replace last */
            part(n-i, v, level+1);
        }
    }
    
    int main(){
        int N;
        cout << "input number:";
        cin >> N;
    
        vector<int> v(N);
    
        part(N, v, 0);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I came across an algorithmic problem to find out the number of inversion pairs
I need an algorithm that identifies all possible combinations of a set of numbers
I need to sort the nodes of a directed graph such that the number
I'm trying to find a solution to this problem: Given a IEnumerable< IEnumerable< int>>
I need to find all sub-arrays which share any mutual element and merge them
Need prettier solution of below example but with std::accumulate. #include <algorithm> #include <vector> #include
I need to find the number of elements in a tree using an iterative
I came across this problem,I have got an algorithm that I need to implement
I'm looking for a solution that could process large blocks of user input text
I need an algorithm which given a list L and a number N ,

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.