单循环链表-创建、插入、删除、反转等操作

//list.h

#ifndef _List_H
#define _List_H

#include <stdio.h>
#include <stdlib.h>

#define NotFound NULL;


typedef struct List 
{
	int value;
	struct Node * next;
}Node;

typedef struct List *pNode;
typedef pNode pList;
typedef pNode Position;

pList creatList(int *array, int len);
Position findNode(pList head, int x);
//pList lastInsertList(pList head, int insertvalue);
pList InsertList(pList head, int val, int insertvalue);
pList deleteNode(pList head, int delValue);
pList reversalList(pList head);
pList freeList(pList head);
void printList(pList head);

#endif    /* _List_H */

//list.c

#include "singleList.h"

pList creatList(int *array, int len)
{
	pList head,ptr,tmp;
	int i;

	head = (pList)malloc(sizeof(Node));
	if(!head)
	{
		printf("分配内存失败!");
		return NULL;
	}
	head->next = NULL;
	head->value = array[0];
	
	tmp = head;
	for(i = 1; i < len; i++)
	{
		ptr = (pList)malloc(sizeof(Node));
		if (!ptr)
		{
			printf("分配内存失败!");
			return NULL;
		}
		ptr->value = array[i];
		ptr->next = NULL;
		tmp->next = ptr;
		tmp = tmp->next;
	}
	ptr->next = head;//单循环增加
	return head;
}	

Position findNode(pList head, int x)
{	
	pList ptr = head;
	while(ptr)
	{
		if(ptr->value == x)
			return ptr;
		ptr = ptr->next;
		if(ptr == head)//单循环增加
			break;
	}
	return NotFound;
}

//在值为val的节点前插入
pList InsertList(pList head, int val, int insertvalue)
{	
	pList temp = head;
	pList ptr = head;
	pList tmp;
	while(ptr)
	{
		if (ptr->value == val)
		{	
			while(temp->next != ptr)
				temp = temp->next;
			tmp = (pList)malloc(sizeof(Node));
			tmp->next = ptr;
			tmp->value = insertvalue;
			temp->next = tmp;
			return head;
		}
		ptr = ptr->next;
		if (ptr == head)
		{
			printf("no such value can be insert!\n");
			break;
		}
	}
	return NotFound;
}

pList deleteNode(pList head, int delValue)
{	
	pList ptr,temp;
	
	ptr = temp = head;
	while(ptr)
	{
		if (ptr->value == delValue)//是“==”注意
		{
			while(temp->next != ptr)
				temp = temp->next;//找到ptr的上一个节点temp
			temp->next = ptr->next;
			free(ptr);
			if (head == ptr)//说明删除的是头节点
			{
				return temp->next;
			}
			return head;//当删除头节点时就不行
		}
		ptr = ptr->next;
		if (ptr == head)//说明循环了一周
		{
			printf("the delValue had not found!\n");
			break;
		}		
	}

	return NotFound;
}

pList reversalList(pList head)
{
	pList ptr,temp;

	ptr = head;
	temp = head->next;
	while(temp->next)
	{	
		pList p = temp;
		temp = temp->next;
		p->next = ptr;
		ptr = p;

		if(temp->next == head)//单循环增加
			break;
	}
	temp->next = ptr;
	head->next = temp;//NULL改成temp
	return temp;
}

pList freeList(pList head)
{
	pList ptr;
	
	pList p = head;//单循环新增
	while(head)
	{	
		ptr = head;
		head = head->next;
		free(ptr);
		if(head == p)//单循环新增
		{
			head = NULL;
			break;
		}
	}
	return head;//注意内存分配问题
}

void printList(pList head)
{	
	pList ptr = head;

	if(!ptr)	
	{
		printf("the list is empty!\n");
		return;
	}

	printf("the list is : ");
	while(ptr)
	{
		printf("%d ",ptr->value);
		ptr = ptr->next;
		if(ptr == head)//单循环增加
			break;
	}
	printf("\n");
}

//main.c

#include "singleList.h"

int main(void)
{
	int array[] = {1,2,3,4,5,6,7,8,9,10};
	int len = sizeof(array)/sizeof(*array);
	int insertvalue = 100;
	Position p;

	pList head = creatList(array,len);
	printList(head->next);
 	head = reversalList(head->next);
 	printList(head);
 	p = findNode(head,5);
 	printf("the position value is : %d\n",p->value);
	//在元素为10前面插入100
	head = InsertList(head,10,insertvalue);
	printList(head);

	//删除10000的节点
	head = deleteNode(head,10);
 	printList(head);
	//删除头节点
	head = deleteNode(head,1);
	printList(head);
	//释放链表
	head = freeList(head);
	printList(head);
}


与单链表相比,在插入和删除操作都简化了。


  • 5
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值