6-7 链表逆置 (20分)

本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下:

struct ListNode {
    int data;
    struct ListNode *next;
};

函数接口定义:

struct ListNode *reverse( struct ListNode *head );

其中head是用户传入的链表的头指针;函数reverse将链表head逆置,并返回结果链表的头指针。
裁判测试程序样例:

#include 
#include 

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

struct ListNode *reverse( struct ListNode *head ){
	if(head==NULL||head->next==NULL)//情况1和情况2
	return head;
	struct ListNode *p1,*p2,*t,*temp;
	temp=(struct ListNode *)malloc(sizeof(struct ListNode ));
	p1=p2=t=head;
	while(p1->next)
	    p1=p1->next;
    while(t->next->next)
	    t=t->next; 
	if(t==head){
		temp->data=head->data;
		head->data=p1->data;
		p1->data=temp->data;
		return head; 
	}//情况3
	while(p1->next!=p2&&p1!=p2){
		temp->data=p1->data;
		p1->data=p2->data;
		p2->data=temp->data;
		p1=t;
		t=head;
		while(t->next!=p1)
		t=t->next;
		p2=p2->next;
	}//情况4
	return head;
}

你可能感兴趣的:(新人)