两个有序链表序列的交集

题目: https://pintia.cn/problem-sets/15/problems/2999

思路: 用数组存储数据,设两个指针分别扫描两个数组,比较两个指针指向数据的大小,较小的继续向后扫描,相同就记录下来,直至其中一个数组尾部,结束扫描。

注意: 第五个测试点数据量较大。

代码:

#include <iostream>
#include <vector>
using namespace std;

int s1[1000005];
int s2[1000005];
vector<int> outputList;

void input(int s[]){
    int i = 0;
    while(true){
        int c; cin>>c;
        s[i++] = c;
        if(c == -1) break;
    }
}
int main() {
    input(s1),input(s2);
    int i = 0,j = 0;
    while(true){
        int a = s1[i],b = s2[j];
        if(a == -1 || b == -1) break;
        if(a < b) i++;
        else if(a > b) j++;
        else outputList.push_back(a),i++,j++;
    }
    if(outputList.empty()) cout<<"NULL"<<endl;
    else {
        int size = outputList.size();
        for(int c = 0;c < size - 1;c++)
            cout<<outputList.at(c)<<" ";
        cout<<outputList.back()<<endl;
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值