可变大小的数组

时间:2017-01-31 13:05:50

标签: c++ arrays

所以,我陷入了hakerrank的编码问题。问题出在链接https://www.hackerrank.com/challenges/variable-sized-arrays 我在c ++中的代码如下,

#include<stdio.h>
#include<stdlib.h>
using namespace std;
main()
{
    int n, q;
    scanf("%d %d", &n, &q);
    int **a = new int*[n];
    int k;
    for (int i = 0; i<n; i++)
    {
        scanf("%d", &k);
        int *c = new int[k];
        for (int j = 0; j<k; j++)
        {
            scanf("%d", &c[i]);
        }
        a[i] = c;
    }
    int s, f, *z;
    for (int i = 0; i<q; i++)
    {
        scanf("%d %d", &s, &f);
        z = a[s];
        printf("%d\n", z[f]);
    }
}

每次我运行它时,都会显示垃圾值。请帮助我。

2 个答案:

答案 0 :(得分:4)

你的指数令人困惑。 scanf("%d", &c[i])应为scanf("%d", &c[j])

答案 1 :(得分:0)

你已经将很多C与C ++混合在了一起。看起来您正在尝试实现具有可变第二维的2D数组。尝试下面的程序,只需对代码进行少许修改:

#include<iostream>

using namespace std;
int main()
{
    int n, q;
    cout<<"Enter the rows : \n" ;
    cin>>n>>q;
    int **a = new int*[n];
    int k;
    for (int i = 0; i<n; i++)
    {
        cout<<"Enter the column : \n" ;
        cin>>k;
        int *c = new int[k];
        for (int j = 0; j<k; j++)
        {
            cout<<"Enter the value["<<j<<"] : \n";
            cin>>c[j];
        }

        a[i] = c;
    }
    int s, f, *z;
    for (int i = 0; i<q; i++)
    {
        cout<<"Enter the row and column to print : \n" ;
        cin>>s>>f;
        z = a[s];
        cout<<z[f]<<endl;
    }
    return 0;
}

仅供参考:您仍需要添加正确的错误处理方案。