我是靠谱客的博主 美满蓝天,最近开发中收集的这篇文章主要介绍循环链表插入和删除,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

循环链表

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

单链表判断空链表为head->next 而循环链表判断空链表为head->next 是否等于head

时间复杂度

由于终端结点用尾指针rear指示,则查找终端结点是O(1),而开始结点是rear->next->next,当然也是O(1)

初始化循环链表

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->next != (*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;
        *pNode = 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 = target->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;
}

最后

以上就是美满蓝天为你收集整理的循环链表插入和删除的全部内容,希望文章能够帮你解决循环链表插入和删除所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部