【数据结构和算法】Day 17

将单链表中终端节点的指针端由空指针改为指向头节点,就使整个单链表形成一个环,这种头尾相接的单链表称为单循环列表,简称循环列表。


循环列表的主要差异就在于循环的判断空列表的条件上,原来判断head->next是否为NULL,现在则是head->next是否等于head


终端节点用尾指针rear指示,则查找终端结点的结果是O(1),而开始结点是rear->naxt->naxt,当然也是O(1)


/*链表结构的定义*/
typedef struct CLinkList
{
	int data;
	struct CLinkList *next;
} node;

/*初始化循环列表*/
void ds_init(node **pNode)
{
		int item;
		node *temp;
		node *target;
		
		printf("输入节点的值,输入0完成初始化\n");
		
		while(1)
		{
			scanf("%d",&item);
			fflush(stdin);
			
			if(item == 0)
				return;
				
			if((*pNode) == NULL)
			{	/*循环链表中只有一个结点*/ 
				*pNode = (node*) malloc(sizeof(struct CLinkList));
				if(!(*pNode))
					exit(0);
				(*pNode)->data = item;
				(*pNode)->next = *pNode; 
			}
			else
			{
				/*找到next指向第一个结点的结点*/
				for( target = (*pNode);target->next != (*pNode);target = target->next)
					; 
				
				/*生成一个新的结点*/
				temp = (node *)malloc(sizeof(struct CLinkList));
				
				
				if(!temp)
					exit(0);
				
				temp->data = item;
				temp->next = *pNode;
				target->next = temp; 
			}
		} 
}

/*插入结点*/
/*参数:链表的第一个节点,插入的位置*/
void ds_insert(node **pNode, int i) 
{
	node *temp;
	node *target;
	node *p;
	int item;
	int j = 1;
	
	printf("输入要插入结点的值:");
	scanf("%d", &item);
	
	if( i == 1 )
	{//新插入的结点作为第一个结点
		temp = (node*) malloc(sizeof(struct CLinkList));
		
		if( !temp )
		{
			exit(0);
		}
		
		temp->data = item;
		
		/*寻找最后一个结点*/
		for(target = (*pNode); target->naxt != (*pNode); target = target->next)	;
		
		temp->next =  (*pNode);
		target->next = temp;
		*pNode = temp;
	}
	else
	{
		target = *pNode;
		
		for( ; j < (i-1); ++j)
		{
			target = target->next;
		}
		
		temp = (node*) malloc(sizeof(struct CLinkList));
		
		if( !temp )
		{
			exit(0);
		}
		
		temp->data = item;
		p = target->next;
		target->next = temp;
		temp->next = p;  
	}
}

/*删除结点*/
void ds_delete(node **pNode, int i)
{
	node *target;
	node *temp;
	int j = 1;
	
	if(i == 1)
	{//删除的是第一个结点 
		/*找到最后一个结点*/
		for(target = *pNode; target->next != *pNode;target = taeget->next) ;
		
		temp = *pNode;
		*pNode = (*pNode)->next;
		target->next = *pNode;
		free(temp);
	}
	else
	{
		target = *pNode;
		
		for( ; j < i-1; ++j )
		{
			target = target->next;
		}
		
		temp = target->next;
		target->next = temp->next;
		free(temp);
	}
} 

/*返回结点所在位置*/
int ds_search(node *pNode, int elem)
{
	node *target;
	int i = 1;
	
	for(target = pNode; target->data != elem && target->next != pNode; ++i)
	{
		target = target->next;
	}
	
	if( target->next == pNode ) /*表中不存在该元素*/
		return 0;
	else
		return i; 
} 










  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值