当前位置: 代码迷 >> 综合 >> PAT乙级-1025 反转链表 (25分)
  详细解决方案

PAT乙级-1025 反转链表 (25分)

热度:68   发布时间:2023-09-27 01:16:45.0

点击链接PAT乙级-AC全解汇总

题目:
给定一个常数 K 以及一个单链表 L,请编写程序将 L 中每 K 个结点反转。例如:给定 L 为 1→2→3→4→5→6,K 为 3,则输出应该为 3→2→1→6→5→4;如果 K 为 4,则输出应该为 4→3→2→1→5→6,即最后不到 K 个元素不反转。

输入格式:
每个输入包含 1 个测试用例。每个测试用例第 1 行给出第 1 个结点的地址、结点总个数正整数 N (≤105?? )、以及正整数 K (≤N),即要求反转的子链结点的个数。结点的地址是 5 位非负整数,NULL 地址用 ?1 表示。

接下来有 N 行,每行格式为:

Address Data Next

其中 Address 是结点地址,Data 是该结点保存的整数数据,Next 是下一结点的地址。

输出格式:
对每个测试用例,顺序输出反转后的链表,其上每个结点占一行,格式与输入相同。

输入样例:

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

输出样例:

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

我的代码:

#include<iostream>
#include<cstdio>
#include<string>
#include<algorithm>
#include<cstring>
#include<vector>
#include<math.h>
using namespace std;int main()
{
    int start_add=0,temp_add=0,N=0,K=0;cin>>start_add>>N>>K;if(N==0||K>N)return 0;int mylist[100100]={
    0},mydata[100100]={
    0},next[100100]={
    0};for(int i=0;i<N;i++){
    cin>>temp_add;cin>>mydata[temp_add]>>next[temp_add];}//sort without changeint index=0;while(start_add!=-1){
    mylist[index++]=start_add;start_add=next[start_add];}//reversefor(int i=0;i<index-index%K;i+=K){
    //reverse i ~ i+K-1int t_start=i,t_end=i+K-1;while(t_start<t_end){
    int temp=mylist[t_start];mylist[t_start]=mylist[t_end];mylist[t_end]=temp;t_start++;t_end--;}}//coutfor(int i=0;i<index-1;i++){
    printf("%05d %d %05d\n",mylist[i],mydata[mylist[i]],mylist[i+1]);}printf("%05d %d -1\n",mylist[index-1],mydata[mylist[index-1]]);return 0;
}

有的时候题目是一起做的,所以会有不需要的头文件