# linklist **Repository Path**: dadatuYHD/linklist ## Basic Information - **Project Name**: linklist - **Description**: Linked list related operation - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-05 - **Last Updated**: 2021-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## linklist * 通过C语言实现的链表操作 ## 部分函数介绍 * `void ReverseDisplayLinkList(linklist *head)`:Reverse print the linklist data but not include head node * `int ChangeDataLinkList(linklist *head, data_t olddata, data_t newdata)` * `linklist * FindLocalNode(linklist *phead, int local)`:Find the node local * `void ReverseLinklistOne(linklist **head)`:reverse the linklist, iteration(迭代法) * `void ReverseLinklistTwo(linklist **head)`:reverse the linklist,recurrence(递归) * `bool JudgeLoopLinklist(linklist *head)`:判断链表是否存在环 * `linklist* LinklistSwap(linklist *phead, linklist *pNodeFirst, linklist *pNodeSecond)`:swap the nodem,parameter is any address of the two node