團體程式設計天梯賽L2-022 重排連結串列

小王子y發表於2020-10-02

給定一個單連結串列 L ​1 ​​ →L ​2 ​​ →⋯→L ​n−1 ​​ →L ​n ​​ ,請編寫程式將連結串列重新排列為 L ​n ​​ →L ​1 ​​ →L ​n−1 ​​ →L ​2 ​​ →⋯。
輸入格式:
每個輸入包含1個測試用例。每個測試用例第1行給出第1個結點的地址和結點總個數,即正整數N (≤10
​5
​​ )。結點的地址是5位非負整數,NULL地址用−1表示。

接下來有N行,每行格式為:

Address Data Next
其中Address是結點地址;Data是該結點儲存的資料,為不超過10
​5
​​ 的正整數;Next是下一結點的地址。題目保證給出的連結串列上至少有兩個結點。

輸出格式:
對每個測試用例,順序輸出重排後的結果連結串列,其上每個結點佔一行,格式與輸入相同。

輸入樣例:

00100 6
00000 4 99999
00100 1 12309
68237 6 -1
33218 3 00000
99999 5 68237
12309 2 33218

輸出樣例:

68237 6 00100
00100 1 99999
99999 5 12309
12309 2 00000
00000 4 33218
33218 3 -1
#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
using namespace std;
struct node{
	int address;
	int key;
	int next;
}a[100005];
 
 vector<node>v,ans; 
int main(){
	
	int begin,n;
	cin>>begin>>n;
	int addr,key,next;
	for(int i=0;i<n;i++){
		cin>>addr>>key>>next;
		a[addr].address=addr;
		a[addr].key=key;
		a[addr].next=next;
	}	
	int t=begin;
	while(t!=-1){
		v.push_back(a[t]);
		t=a[t].next;
	}
	int l=0,r=v.size()-1;
	while(1){
		ans.push_back(v[r]);
		r--;
		if(l-r==1)break;
		ans.push_back(v[l]);
		l++;
		if(l-r==1)break;
	}
	int cnt=ans.size();
	for(int i=0;i<cnt;i++){
		if(i<cnt-1)
		printf("%05d %d %05d\n",ans[i].address,ans[i].key,ans[i+1].address);
		else
		printf("%05d %d -1\n",ans[i].address,ans[i].key);
	}
	return 0;
} 

相關文章