PTA 链表逆置
Posted dirwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA 链表逆置相关的知识,希望对你有一定的参考价值。
6-3 链表逆置 (20 分)
本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
函数接口定义:
struct ListNode *reverse( struct ListNode *head );
其中head
是用户传入的链表的头指针;函数reverse
将链表head
逆置,并返回结果链表的头指针。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist(); /*裁判实现,细节不表*/
struct ListNode *reverse( struct ListNode *head );
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("
");
}
int main()
{
struct ListNode *head;
head = createlist();
head = reverse(head);
printlist(head);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 2 3 4 5 6 -1
输出样例:
6 5 4 3 2 1
1 struct ListNode *reverse( struct ListNode *head ) 2 { 3 struct ListNode *L=(struct ListNode*)malloc(sizeof(struct ListNode)),*p,*q;//L就是新的头节点 4 L->next=NULL; 5 p=head;//遍历的是p,相当于中间变量 6 while(p) 7 { 8 q=(struct ListNode*)malloc(sizeof(struct ListNode)); 9 q->data=p->data; 10 q->next=L->next;//头插法 11 L->next=q;//头插法 q,新节点 12 p=p->next; 13 } 14 return L->next; 15 }
以上是关于PTA 链表逆置的主要内容,如果未能解决你的问题,请参考以下文章