给定一个单链表 L,我们将每 K 个结点看成一个区块(链表最后若不足 K 个结点,也看成一个区块),请编写程序将 L 中所有区块的链接反转。例如:给定 L 为 1→2→3→4→5→6→7→8,K 为 3,则输出应该为 7→8→4→5→6→1→2→3。
输入格式:
每个输入包含 1 个测试用例。每个测试用例第 1 行给出第 1 个结点的地址、结点总个数正整数 N (≤105)、以及正整数 K (≤N),即区块的大小。结点的地址是 5 位非负整数,NULL 地址用 −1 表示。
接下来有 N 行,每行格式为:
Address Data Next
其中 Address
是结点地址,Data
是该结点保存的整数数据,Next
是下一结点的地址。
输出格式:
对每个测试用例,顺序输出反转后的链表,其上每个结点占一行,格式与输入相同。
输入样例:
00100 8 3
71120 7 88666
00000 4 99999
00100 1 12309
68237 6 71120
33218 3 00000
99999 5 68237
88666 8 -1
12309 2 33218
输出样例:
71120 7 88666
88666 8 00000
00000 4 99999
99999 5 68237
68237 6 00100
00100 1 12309
12309 2 33218
33218 3 -1
solution:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n'
const int maxn=1e5+5;
int main()
{
int start,n,k;
cin>>start>>n>>k;
int data[maxn],next[maxn];
int cnt=0;
for(int i=0;i<n;i++)
{
int tmp;cin>>tmp;
cin>>data[tmp]>>next[tmp];
}
vector<pair<int,int> >list;
while(start!=-1)
{
cnt++;
list.push_back({start,data[start]});
start=next[start];
}
vector<pair<int,int> >ans;
if(cnt<=k)
{
ans=list;
}
else
{
int tmp=cnt%k;
if(tmp)
for(int i=cnt-tmp;i<cnt;i++)
{
ans.push_back({list[i].first,list[i].second});
}
cnt-=tmp;
for(int i=cnt-k;i>=0;i-=k)
{
for(int j=0;j<k;j++)
{
ans.push_back({list[i+j].first,list[i+j].second});
//cout<<i+j<<endl;
}
}
}
//cout<<list[2].first<<' '<<list[2].second;
for(int i=0;i<ans.size()-1;i++)
{
printf("%05d %d %05d\n",ans[i].first,ans[i].second,ans[i+1].first);
}
printf("%05d %d -1\n",ans[ans.size()-1].first,ans[ans.size()-1].second);
}
标签:99999,结点,PAT,start,int,乙级,1110,区块,88666
From: https://blog.csdn.net/flyidj/article/details/141470543