本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下: 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; }
时间: 2024-02-05 08:02:49 浏览: 76
以下是完整的代码实现:
```c
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *reverse(struct ListNode *head);
struct ListNode *createlist()
{
int n, i;
scanf("%d", &n);
struct ListNode *head = NULL, *p = NULL;
for (i = 0; i < n; ++i) {
int x;
scanf("%d", &x);
struct ListNode *new_node = (struct ListNode*)malloc(sizeof(struct ListNode));
new_node->data = x;
new_node->next = NULL;
if (head == NULL) {
head = new_node;
p = head;
} else {
p->next = new_node;
p = new_node;
}
}
return 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;
}
struct ListNode *reverse(struct ListNode *head)
{
if (head == NULL || head->next == NULL) {
return head;
}
struct ListNode *prev = NULL, *cur = head, *next = head->next;
while (next != NULL) {
cur->next = prev;
prev = cur;
cur = next;
next = next->next;
}
cur->next = prev;
return cur;
}
```
解释如下:
首先是链表的创建,不需要修改。然后是主函数,调用了 `createlist` 创建链表,再调用 `reverse` 函数将链表逆置,最后再调用 `printlist` 函数输出逆置后的链表。
关键在于 `reverse` 函数的实现。我们可以使用三个指针,分别指向前一个结点、当前结点和后一个结点。在遍历链表时,将当前结点的 `next` 指针指向前一个结点,然后将三个指针依次向后移动即可。最后,别忘了将最后一个结点的 `next` 指针也指向前一个结点,然后返回新的头结点即可。
阅读全文