【C++编程基础】AOJ (C++ Programming II)—1-D-vector II

1-D-vector II

题目

For n dynamic arrays Ai (i=0,1,…,n−1), perform a sequence of the following operations:
  • pushBack(t, x): Add element x at the end of At.

  • dump(t): Print all elements in At.

  • clear(t): Clear At. If At is empty, do nothing.

Ai is a 0-origin array and it is empty in the initial state.

输入

The input is given in the following format.

n

q

query1

query2

:

queryq

Each query queryi is given by 0 t x or 1 t or 2 t where the first digits 0, 1 and 2 represent pushBack, dump and clear operations respectively. 1≤n≤1,000 1≤q≤500,000 −1,000,000,000≤x≤1,000,000,000 The total number of elements printed by dump operations do not exceed 500,000

输出

For each dump operation, print elements of At a line. Separete adjacency elements by a space character (do not print the space after the last element). Note that, if the array is empty, an empty line should be printed.

3 13
0 0 1
0 0 2
0 0 3
0 1 -1
0 2 4
0 2 5
1 0
1 1
1 2
2 1
1 0
1 1
1 2
输出
1 2 3
-1
4 5
1 2 3

4 5

题解(代码流程)

#include<bits/stdc++.h>

using namespace std;
#define  endl '\n'

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int n;
    cin >> n;
    vector<vector<int>> a(n);//定义嵌套数组
    int q;
    cin >> q;
    while (q--) {
        int p;
        cin >> p;
        if (p == 0) {
            int t, x;
            cin >> t >> x;
            a[t].push_back(x);//
        } else if (p == 1) {
            int t;
            cin >> t;
            for (auto e:a[t]) {
                cout << e << " ";
            }
            cout << endl;
        } else {
            int t;
            cin >> t;
            a[t].clear();//清除t层元素
        }
    }
    return 0;
}

总结

掌握双重数组的定义与调用,对比以往c语言中{int a[];}的数组与双重数组。

remember

  • clear()
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值