1025 反转链表 (25 分)

1025 反转链表 (25 分)

给定一个常数 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
思路:
  去除输入数据中不在链表上的数据,使用reverse()函数进行反转。
#include<iostream>
#include<string>
#include<vector>
#include<string>
#include<cstdio>
#include<cmath>
#include<string.h>
#include<algorithm>
#include<map>
#include<stack>
using namespace std;

struct Node
{
    int address;
    int data;
    int next;
};
Node node[100005];
int main()
{
    int head,n,k;
    scanf("%d%d%d",&head,&n,&k);
    for(int i=0;i<n;i++)
    {
        Node temp;
        scanf("%d%d%d",&temp.address,&temp.data,&temp.next);
        node[temp.address]=temp;
    }
    Node res[n];
    int cnt=0,j=0;
    for(int i=head;i!=-1;i=node[i].next)
    {

        res[j++]=node[i];
        cnt++;
        if(cnt==k)
        {
            reverse(res+j-k,res+j);
            cnt=0;
        }
    }
    for(int i=0;i<j;i++)
    {
        if(i!=j-1)
        {
            printf("%05d %d %05d
",res[i].address,res[i].data,res[i+1].address);
        }
        else
        {
            printf("%05d %d -1
",res[i].address,res[i].data);
        }
    }
    return 0;
}


 
原文地址:https://www.cnblogs.com/zhanghaijie/p/10404741.html