数据结构专题——链表处理 A1032.Sharing (静态链表)

Posted jasonpeng1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构专题——链表处理 A1032.Sharing (静态链表)相关的知识,希望对你有一定的参考价值。

技术图片

 

 

#include <bits/stdc++.h>
#include<math.h>
#include <string>
using namespace std;
const int maxn = 100010;
struct Node{//定义静态链表
    char data;
    int next;
    bool flag;
}node[maxn];
int main(){
    for(int i =0;i<maxn;++i){
        node[i].flag = false;
    }
    int s1,s2,n;//s1和s2分别代表两条链表的首地址
    scanf("%d%d%d",&s1,&s2,&n);
    int address,next;//节点地址与后继节点地址
    char data;
    for(int i=0;i<n;++i){
        scanf("%d %c %d",&address,&data,&next);
        node[address].data = data;
        node[address].next = next;
    }
    int p;
    for(p = s1;p != -1;p = node[p].next){
        node[p].flag = true;//枚举第一条链表的所有节点,令其出现次数为1
    }
    for(p = s2;p != -1;p = node[p].next){
        if(node[p].flag == true){
            break;
        }
    }
    if(p != -1){
        printf("%05d
",p);
    }else{
        printf("-1
");
    }
    system("pause");
    return 0;
} 

以上是关于数据结构专题——链表处理 A1032.Sharing (静态链表)的主要内容,如果未能解决你的问题,请参考以下文章

leetcode链表专题

第四季-专题7-Linux内核链表

数据结构和算法设计专题之---推断两个链表是否相交并找出交点

数据结构专题

字节跳动+百度+阿里巴巴高频面试题之链表专题

字节跳动+百度+阿里巴巴高频面试题之链表专题