如何在字符串数组中存储更多数量的字符串

时间:2013-02-25 18:13:00

标签: c++ string vector

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
int main()
{
    std::vector<int> v;
    long int a1[1000000];
    string a[1000000];
    for (int i=0; i<100; i++)
        a[i]=" ";
    int n;
    cout << "enter the value of n";
    cin >> n;
    for (int i=0; i<n; i++)
    {
        cin >> a1[i];
        v.push_back(a1[i]);
    }
    sort(v.begin(), v.end());
    char ch[100];
    int i=0;
    do { 
        for(int j=0; j<n; j++)
        {
            ch[j] = v[j] + '0';
            // cout<<ch[j];
        }
        int j=3;
        int k=0;
        for(int l=0; l<n; l++)
        {
            a[i] = a[i] + ch[l];
        }
        cout << a[i] << endl;
        i++;
    }
    while (std::next_permutation(v.begin(), v.end()));
    cout << endl << i;
}

我想将所有排列存储在字符串数组中,但我无法存储&gt; 8!(40320),即9!以后,如果我声明字符串a [1000000] 它在dev c ++中显示错误可以解释我如何将它特意存储到字符串数组(因为我希望这个字符串代码在另一个代码中使它成为更容易)大于9!或者最多15岁!

2 个答案:

答案 0 :(得分:4)

堆栈溢出。

对于这样数量的元素,堆栈太小了。您需要使用堆(使用operator new)。或者只使用std::vector

例如,您可以替换

string a[1000000];

std::vector< std::string > a( 1000000 );

long int相同。

答案 1 :(得分:0)

写一个文件,定期刷新它。 在内存中缓存所需的几个。