修改矩阵链乘法以打印所有尺寸的连续分区

时间:2018-09-29 18:19:47

标签: backtracking

我认为应该打印所有尺寸的

,因为起初它将首先将所有元素分别放入向量中,然后从每个位置扩展到包括更多元素,最后在数组元素的最后一个位置打印到达任何人都可以告诉我我在哪里想错了,因为我检查了gcc它只打印了一个分区。

代码:

#include <bits/stdc++.h>
using namespace std;
void print(vector<vector<int> >vec)
{
    for(int i=0;i<vec.size();i++)
    {
       for(int j=0;j<vec[i].size();j++)
           cout<<vec[i][j]<<" ";
       cout<<"\n";
    }
    cout<<"\n";
}

void printallpartitions(int *a,int low,int high,int n,vector<vector<int> >&vec)
{
    if(low==high)
    {
        vector<int> tem;
        tem.push_back(a[low]);
        vec.push_back(tem);
        if(high==n)
        {
           print(vec);
        }
        return;
    }
    if(high-low>=1)
    {
        vector<int> tem;
        for(int i=low;i<=high;i++)
        {
           tem.push_back(a[i]);
        }
        if(high==n)
        {
            print(vec);
        }
        return;
    }
    for(int i=low;i<high;i++)
    {
        printallpartitions(a,low,i,n,vec);
        printallpartitions(a,i+1,high,n,vec);
        vec.pop_back();
    }
}

signed main()
{
    int *a,n;
    cout<<"n?"<<"\n";
    cin>>n;
    a=new int[n];
    for(int i=0;i<n;i++)
    {
        cin>>a[i];
    }
    vector<vector<int> > vec;
    printallpartitions(a,0,n-1,n-1,vec);
    return 0;
}

0 个答案:

没有答案