6-3 链表逆置 (20 分)
标签:you 中间 problem 接口 bsp font ret div -o
本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下:
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("\n");
}
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 }
标签:you 中间 problem 接口 bsp font ret div -o
原文地址:https://www.cnblogs.com/DirWang/p/11929931.html