当前位置:   article > 正文

链表(c语言实现)

链表

1.链表的分类

实际中链表的结构非常多样,以下情况组合起来就有8种链表结构:

(1)单向或者双向


(2)带头或者不带头


(3)循环或者非循环

 虽然有这么多的链表的结构,但是我们实际中最常用还是两种结构:

 1. 无头单向非循环链表:结构简单,一般不会单独用来存数据。实际中更多是作为其他数据结构的子结构,如哈希桶、图的邻接表等等。

2. 带头双向循环链表:结构最复杂,一般用在单独存储数据。实际中使用的链表数据结构,都是带头双向循环链表。

2.无头单向非循环链表的实现

  1. // 1、无头+单向+非循环链表增删查改实现
  2. typedef int SLTDateType;
  3. typedef struct SListNode
  4. {
  5. SLTDateType data;
  6. struct SListNode* next;
  7. }SListNode;
  8. // 动态申请一个节点
  9. SListNode* BuySListNode(SLTDateType x);
  10. // 单链表打印
  11. void SListPrint(SListNode* plist);
  12. // 单链表尾插
  13. void SListPushBack(SListNode** pplist, SLTDateType x);
  14. // 单链表的头插
  15. void SListPushFront(SListNode** pplist, SLTDateType x);
  16. // 单链表的尾删
  17. void SListPopBack(SListNode** pplist);
  18. // 单链表头删
  19. void SListPopFront(SListNode** pplist);
  20. // 单链表查找
  21. SListNode* SListFind(SListNode* plist, SLTDateType x);
  22. // 单链表在pos位置之后插入x
  23. void SListInsertAfter(SListNode* pos, SLTDateType x);
  24. // 单链表删除pos位置之后的值
  25. void SListEraseAfter(SListNode* pos);
  1. // 1、无头+单向+非循环链表增删查改实现
  2. SListNode* BuySListNode(SLTDateType x)
  3. {
  4. SListNode* tmp = (SListNode*)malloc(sizeof(SListNode));
  5. if (tmp == NULL)
  6. {
  7. printf("无法给节点开辟空间\n");
  8. return NULL;
  9. }
  10. else
  11. {
  12. tmp->data = x;
  13. tmp->next = NULL;
  14. return tmp;
  15. }
  16. }
  1. // 单链表打印
  2. void SListPrint(SListNode* plist)
  3. {
  4. SListNode* head = plist;
  5. while (head != NULL)
  6. {
  7. printf("%d ", head->data);
  8. head = head->next;
  9. }
  10. }
  1. // 单链表尾插
  2. void SListPushBack(SListNode** pplist, SLTDateType x)
  3. {
  4. SListNode* newnode = BuySListNode(x);
  5. if ( *pplist== NULL)
  6. {
  7. *pplist = newnode;
  8. }
  9. else
  10. {
  11. SListNode* tail = *pplist;
  12. while (tail->next != NULL)
  13. {
  14. tail = tail->next;
  15. }
  16. tail->next = newnode;
  17. }
  18. }
  1. // 单链表的尾删
  2. void SListPopBack(SListNode** pplist)
  3. {
  4. assert(*pplist);
  5. SListNode* cur = *pplist;
  6. SListNode* prev = NULL;
  7. if (cur->next == NULL)
  8. {
  9. free(cur);
  10. *pplist = NULL;
  11. }
  12. else
  13. {
  14. while (cur->next != NULL)
  15. {
  16. prev = cur;
  17. cur = cur->next;
  18. }
  19. free(cur);
  20. prev->next = NULL;
  21. }
  22. }
  1. // 单链表的头插
  2. void SListPushFront(SListNode** pplist, SLTDateType x)
  3. {
  4. SListNode* newnode = BuySListNode(x);
  5. if (*pplist == NULL)
  6. {
  7. *pplist = newnode;
  8. }
  9. else
  10. {
  11. newnode->next = *pplist;
  12. *pplist = newnode;
  13. }
  14. }
  1. // 单链表头删
  2. void SListPopFront(SListNode** pplist)
  3. {
  4. assert(*pplist);
  5. SListNode* cur = *pplist;
  6. if ((*pplist)->next == NULL)
  7. {
  8. free(*pplist);
  9. *pplist = NULL;
  10. }
  11. else
  12. {
  13. cur = cur->next;
  14. free(*pplist);
  15. *pplist = cur;
  16. }
  17. }
  1. // 单链表查找
  2. SListNode* SListFind(SListNode* plist, SLTDateType x)
  3. {
  4. assert(plist);
  5. while (plist != NULL)
  6. {
  7. if (plist->data == x)
  8. {
  9. return plist;
  10. }
  11. plist = plist->next;
  12. }
  13. return NULL;
  14. }
  1. // 单链表在pos位置之后插入x
  2. void SListInsertAfter(SListNode* pos, SLTDateType x)
  3. {
  4. assert(pos);
  5. SListNode* newnode = BuySListNode(x);
  6. newnode->next = pos->next;
  7. pos->next = newnode;
  8. }
  1. // 单链表删除pos位置之后的值
  2. void SListEraseAfter(SListNode* pos)
  3. {
  4. assert(pos);
  5. if (pos->next == NULL)
  6. {
  7. printf("后面无数据\n");
  8. return;
  9. }
  10. else
  11. {
  12. SListNode* prev = pos;
  13. SListNode* cur = pos->next;
  14. prev->next = cur->next;
  15. free(cur);
  16. cur = NULL;
  17. }
  18. }

3. 带头双向循环链表

  1. // 2、带头+双向+循环链表增删查改实现
  2. typedef int LTDataType;
  3. typedef struct ListNode
  4. {
  5. ListDateType val;
  6. struct ListNode* prev;
  7. struct ListNode* next;
  8. }ListNode;
  9. //初始化双向链表
  10. ListNode* ListInit(ListNode* phead);
  11. //双向链表打印
  12. void ListPrint(ListNode* phead);
  13. // 创建返回链表的头结点.
  14. ListNode* BuyList(ListDateType x);
  15. //双向链表尾插
  16. void ListPushBack(ListNode* phead,ListDateType x);
  17. //双向链表尾删
  18. void ListPopBack(ListNode* phead);
  19. //双向链表头插
  20. void ListPushFront(ListNode* phead, ListDateType x);
  21. //双向链表头删
  22. void ListPopFront(ListNode* phead);
  23. //双向链表查找
  24. ListNode* ListFind(ListNode* pHead, ListDateType x);
  25. //在pos之前插入
  26. void ListInsert(ListNode* pos, ListDateType x);
  27. //删除pos位置
  28. void ListErase(ListNode* pos);
  1. //初始化双向链表
  2. ListNode* ListInit(ListNode* phead)
  3. {
  4. phead = BuyList(0);
  5. phead->next = phead;
  6. phead->prev = phead;
  7. return phead;
  8. }
  1. //双向链表打印
  2. void ListPrint(ListNode* phead)
  3. {
  4. ListNode* cur = phead->next;
  5. while (cur != phead)
  6. {
  7. printf("%d ", cur->val);
  8. cur = cur->next;
  9. }
  10. }
  1. // 创建返回链表的头结点
  2. ListNode* BuyList(ListDateType x)
  3. {
  4. ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
  5. if (newnode == NULL)
  6. {
  7. printf("BuyList fail\n");
  8. exit(-1);
  9. }
  10. newnode->val = x;
  11. newnode->next = NULL;
  12. newnode->prev = NULL;
  13. return newnode;
  14. }
  1. //双向链表尾插
  2. void ListPushBack(ListNode* phead, ListDateType x)
  3. {
  4. assert(phead);
  5. ListNode* newnode = BuyList(x);
  6. ListNode* tail = phead->prev;
  7. tail->next = newnode;
  8. phead->prev = newnode;
  9. newnode->next = phead;
  10. newnode->prev = tail;
  11. }
  1. //双向链表尾删
  2. void ListPopBack(ListNode* phead)
  3. {
  4. assert(phead->next != phead);
  5. ListNode* tail = phead->prev;
  6. ListNode* prev = tail->prev;
  7. phead->prev = prev;
  8. prev->next = phead;
  9. free(tail);
  10. tail = NULL;
  11. }
  1. //双向链表头插
  2. void ListPushFront(ListNode* phead, ListDateType x)
  3. {
  4. assert(phead);
  5. ListNode* newnode = BuyList(x);
  6. ListNode* head = phead->next;
  7. phead->next = newnode;
  8. head->prev = newnode;
  9. newnode->next = head;
  10. newnode->prev = phead;
  11. }
  1. //双向链表头删
  2. void ListPopFront(ListNode* phead)
  3. {
  4. assert(phead);
  5. assert(phead->next != phead);
  6. ListNode* head = phead->next;
  7. ListNode* next = head->next;
  8. phead->next = next;
  9. next->prev = phead;
  10. free(head);
  11. head = NULL;
  12. }
  1. //双向链表查找
  2. ListNode* ListFind(ListNode* phead, ListDateType x)
  3. {
  4. assert(phead);
  5. assert(phead->next != phead);
  6. ListNode* pos = phead->next;
  7. while (pos != phead)
  8. {
  9. if (pos->val == x)
  10. {
  11. return pos;
  12. }
  13. pos = pos->next;
  14. }
  15. return NULL;
  16. }
  1. //在pos之前插入
  2. void ListInsert(ListNode* pos, ListDateType x)
  3. {
  4. assert(pos);
  5. ListNode* newnode = BuyList(x);
  6. ListNode* prev = pos->prev;
  7. prev->next = newnode;
  8. pos->prev = newnode;
  9. newnode->prev = prev;
  10. newnode->next = pos;
  11. }
  1. //删除pos位置
  2. void ListErase(ListNode* pos)
  3. {
  4. assert(pos);
  5. ListNode* prev = pos->prev;
  6. ListNode* next = pos->next;
  7. prev->next = next;
  8. next->prev = prev;
  9. free(pos);
  10. pos = NULL;
  11. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/636484
推荐阅读
相关标签
  

闽ICP备14008679号