带头结点链表逆序---逆归与非递归实现

要求将一带链表头List head的单向链表逆序。


#include<stdio.h>


typedef struct _list_node{
	struct _list_node *next;
	int data;
}list_node;

void print_list(list_node *head)
{
	head = head->next;
	while(head)
	{
		printf("%d ", head->data);
		head = head->next;
	}

	printf("\n");
}

list_node *reverse_list(list_node *head)
{
	list_node *h = head->next;
	list_node *new_head = head;
	list_node *tail = NULL;

	while(h)
	{
		head = h->next;
		h->next = tail;
		tail = h;
		h = head;
	}

	new_head->next = tail;

	return new_head;
}

list_node *_reverse_list_recu(list_node *new_head, list_node *head)
{
	if (head->next == NULL) {
		new_head->next = head;
		return head;
	}
	list_node *t = _reverse_list_recu(new_head, head->next);
	t->next = head;
	return head;
}

list_node *reverse_list_recu(list_node *head)
{
	list_node *t = _reverse_list_recu(head, head->next);
	t->next = NULL;
	return head;
}

int main(int argc, char *argv[])
{
	int i;
	list_node *head, *t, *tail;
	head = (list_node *)malloc(sizeof(list_node));
	tail = head;

	for (i = 0; i < 10; i++)
	{
		t = (list_node *)malloc(sizeof(list_node));
		t->data = i;
		t->next = NULL;
		tail->next = t;
		tail = t;
	}

	print_list(head);

	reverse_list(head);

	print_list(head);

	reverse_list_recu(head);

	print_list(head);
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值