博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1032 Sharing
阅读量:6819 次
发布时间:2019-06-26

本文共 880 字,大约阅读时间需要 2 分钟。

代码如下:

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 int main(){ 9 int *m = new int[100001];10 int *exist = new int[100001];11 memset(m,-1,sizeof(m));12 memset(exist,-1,sizeof(exist));13 int sum;14 int a,b;15 scanf("%d %d %d",&a,&b,&sum);16 m[a] = -1;17 m[b] = -1;18 for(int i = 0; i < sum; i++){19 char tem[10];20 int pre,next;21 scanf("%d %s %d",&pre,tem,&next);22 m[pre] = next;23 }24 int head = a;25 while(head != -1){26 //把第一个链表存进哈希表exist中27 exist[head] = 1;28 head = m[head];29 }30 head = b;31 while(head != -1){32 if(exist[head] == 1){33 break;34 }35 head = m[head];36 }37 if(head == -1) printf("%d\n",head);38 else printf("%05d\n",head);39 return 0;40 }

 

转载于:https://www.cnblogs.com/huhusw/p/9755264.html

你可能感兴趣的文章
川模型 一款新的测试模型的提出与研究
查看>>
如何快速开发网站?
查看>>
手动创建并自动挂载swap分区
查看>>
cloudera search1.0.0环境搭建(1):搭建solrcloud
查看>>
bitnami-testlink 相关配置
查看>>
SpringBoot整合Quartz(升级版)
查看>>
导入sql语句 汉字编码不一样报异常
查看>>
html文本自动换行
查看>>
Exchange常见问题大全
查看>>
安装Sublime Text 2插件的方法
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Kubernetes NFS存储服务的误报
查看>>
meta设置
查看>>
sed 行编辑器知识汇总
查看>>
php md5函数和字符串截取
查看>>
nginx升级OpenSSL
查看>>
C++中Timer的用法
查看>>
报表软件JS开发引用HTML DOM的location和document对象
查看>>
Windows7 Python-3.6 安装PyCrypto(pycrypto 2.6.1)出现错误以及解决方法
查看>>