Bmail Computer Network(父亲节点打印路径)

Once upon a time there was only one router in the well-known company Bmail. Years went by and over time new routers were purchased. Every time they bought a new router, they connected it to one of the routers bought before it. You are given the values pi — the index of the router to which the i -th router was connected after being purchased (pi<i ).

There are  n routers in Boogle in total now. Print the sequence of routers on the path from the first to the n -th router.

Input

The first line contains integer number  n (2≤n≤200000 ) — the number of the routers. The following line contains  n−1 integers p2,p3,…,pn (1≤pi<i ), where pi is equal to index of the router to which the  i-th was connected after purchase.

Output

Print the path from the  1-st to the  n-th router. It starts with 1 and ends with  n. All the elements in the path should be distinct.

Examples

Input
8
1 1 2 2 3 2 5
Output
1 2 5 8 
Input
6
1 2 3 4 5
Output
1 2 3 4 5 6 
Input
7
1 1 2 3 4 3
Output
1 3 7 

题目分析,就是找父亲节点,我是从最后一个点开始找然后一直到第一个开头的节点然后结束循环,具体实现看代码。

听懂了记得给个赞鼓励一下,码字不易,用爱发电。

上ac代码。

 我的头像

 有事你就q我;QQ2917366383

学习算法

#include <bits/stdc++.h>
using namespace std;
int n,m,i,j,k,fa[1000001],t,qwq,b[1000001];
int main(){
	scanf("%d",&n);
	for (i=2;i<=n;i++) scanf("%d",&fa[i]);
	j=0;qwq=n;//这里n的意思就是开始从最后一个点
	fa[1]=0; 
	while (fa[qwq]!=0){//这里是找父亲节点
		j++;
		b[j]=qwq;  
		qwq=fa[qwq]; //这里相当于连接下一个节点 
	}
	cout<<1<<" "; 
	for (i=j;i>=1;i--) cout<<b[i]<<" ";  
	return 0;
}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

算法编程张老师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值