鱼C论坛

 找回密码
 立即注册
查看: 710|回复: 0

为什么下列子函数实现单链表 在指定位置插入元素,不能像下面这么做

[复制链接]
发表于 2022-3-23 22:28:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
MyListInsert里面没有开辟新的空间来存放新的节点,ListInsert里面重新开辟了空间来存放新的节点,为什么要开辟新的空间来存数据,没必要?

我写的
int MyListInsert(Node* pHead, Node* pElem, int index)
{
        Node* pCurrentNode = pHead;
        Node* temp = NULL;
        int length = ListLength2(pHead);
        if (index > 0 && index <= length)
        {
                for (int i = 0; i < length; i++)
                {
                        if (i + 1 == index)
                        {
                                temp = pCurrentNode->pNext;
                                pCurrentNode = pElem;
                                pElem->pNext = temp;
                                return 1;
                                break;
                        }
                        else
                        {
                                pCurrentNode = pCurrentNode->pNext;
                        }
                }
        }
        else
        {
                printf("!!!!index out the range of the array\n");
                return 0;
        }
        
}

老师i写的:
int ListInsert(Node* pHead, Node* pElem, int index)
{
        int length = ListLength2(pHead);
        if (index < 0 || index > length)
        {
                return 0;
        }

        //开辟空间,你不能直接将传进来的节点内存直接插入链表,这里
        Node* pNode = (Node*)malloc(sizeof(Node));
        strcpy_s(pNode->name, pElem->name);
        strcpy_s(pNode->phone, pElem->phone);

        if (pNode == NULL)
        {
                return 0;
        }
        Node* pCurrentNode = pHead;

        int count = 0;
        Node* temp = NULL;
        while (pCurrentNode != NULL)
        {
                if (count == index)
                {
                        temp = pCurrentNode->pNext;
                        pCurrentNode = pNode;
                        pNode->pNext = temp;
                        return 1;
                }
                count++;
                pCurrentNode = pCurrentNode->pNext;
        }

}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-18 04:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表