一次单链表的简单练习

#include "stdio.h"
#include <stdlib.h>
//#include "string.h"

typedef int elemType ;

 

typedef struct Node{ /* 定义单链表结点类型 */
elemType element;
Node *next;
}Node;

/* 1.初始化线性表,即置单链表的表头指针为空 */
void initList(Node *pNode)
{
pNode = NULL;
printf("初始化成功\n");
}

/* 2.创建线性表,此函数输入负数终止读取数据*/
Node *creatList(Node *pHead)
{
Node *p1;
Node *p2;

p1=p2=(Node *)malloc(sizeof(Node)); //申请新节点
// memset(p1,0,sizeof(Node));

scanf("%d",&p1->element); //输入新节点
p1->next = NULL; //新节点的指针置为空
while(p1->element > 0) //输入的值大于0则继续,直到输入的值为负
{
if(pHead == NULL) //空表,接入表头
{
pHead = p1;
}
else
{
p2->next = p1; //非空表,接入表尾
}
p2 = p1;
p1=(Node *)malloc(sizeof(Node)); //再重申请一个节点
// memset(p1,0,sizeof(Node));
scanf("%d",&p1->element);
p1->next = NULL;
}
printf("creatList函数执行,链表创建成功\n");
return pHead; //返回链表的头指针
}

/* 3.打印链表,链表的遍历*/
void printList(Node *pNode)
{
Node *pHead; //定义一个链表头指针
pHead = pNode;
if(NULL == pHead) //链表为空
{
printf("PrintList函数执行,链表为空\n");
}
else
{
while(NULL != pHead)
{
printf("%d ",pHead->element);
pHead = pHead->next;
}
printf("\n");
}
}

/* 4.清除线性表L中的所有元素,即释放单链表L中所有的结点,使之成为一个空表 */
void clearList(Node *pNode)
{
Node *pHead;
Node *pNext; //定义两个相邻节点

pHead = pNode;

if(pHead == NULL)
{
printf("clearList函数执行,链表为空\n");
return;
}
while(pHead->next != NULL)
{
pNext = pHead->next;//保存下一结点的指针
free(pHead);
pHead = pNext; //表头下移
}
printf("clearList函数执行,链表已经清除\n");
//pNode = NULL;
}

/* 5.返回单链表的长度 */
int sizeList(Node *pNode)
{
int size = 0;
Node *pHead;

pHead = pNode;
if(pHead == NULL)
{
printf("sizeList函数执行,链表长度 %d \n",size);
return 0;
}
while(pHead != NULL)
{
size++; //遍历链表size大小比链表的实际长度小1
pHead = pHead->next;
}
printf("sizeList函数执行,链表长度 %d \n",size);
return size; //链表的实际长度

}

/* 6.检查单链表是否为空,若为空则返回1,否则返回0 */
int isEmptyList(Node *pNode)
{
if(pNode == NULL)
{
printf("isEmptyList函数执行,链表为空\n");
return 1;
}
printf("isEmptyList函数执行,链表非空\n");
return 0;
}

/* 7.返回单链表中第pos个结点中的元素,若pos超出范围,则停止程序运行 */
elemType getElement(Node *pNode, int pos)
{
Node *pHead;
pHead = pNode;
int i=0;
if(pos < 1)
{
printf("getElement函数执行,pos值非法\n");
return 0;
}
if(pHead == NULL)
{
printf("getElement函数执行,链表为空\n");
return 0;
//exit(1);
}
while(pHead !=NULL)
{
++i;
if(i == pos)
{
break;
}
pHead = pHead->next; //移到下一结点
}
if(i < pos) //链表长度不足则退出
{
printf("getElement函数执行,pos值超出链表长度\n");
return 0;
}
return pHead->element;

}

/* 8.从单链表中查找具有给定值x的第一个元素,若查找成功则返回该结点data域的存储地址,否则返回NULL */
elemType *getElemAddr(Node *pNode, elemType x)
{
Node *pHead;
pHead = pNode;

if(NULL == pHead)
{
printf("getElemAddr函数执行,链表为空\n");
return NULL;
}
if(x < 0)
{
printf("getElemAddr函数执行,给定值X不合法\n");
return NULL;
}
while((pHead->element != x) && (NULL != pHead->next)) //判断是否到链表末尾,以及是否存在所要找的元素
{
pHead = pHead->next;
}
if((pHead->element != x) && (pHead != NULL))
{
printf("getElemAddr函数执行,在链表中未找到x值\n");
return NULL;
}
if(pHead->element == x)
{
printf("getElemAddr函数执行,元素 %d 的地址为 0x%x\n",x,&(pHead->element));
}
return &(pHead->element);//返回元素的地址
}

/* 9.把单链表中第pos个结点的值修改为x的值,若修改成功返回1,否则返回0 */
int modifyElem(Node *pNode,int pos,elemType x)
{
Node *pHead;
pHead = pNode;
int i = 0;

if(NULL == pHead)
{
printf("modifyElem函数执行,链表为空\n");
}
if(pos < 1)
{
printf("modifyElem函数执行,pos值非法\n");
return 0;
}
while(pHead !=NULL)
{
++i;
if(i == pos)
{
break;
}
pHead = pHead->next; //移到下一结点
}
if(i < pos) //链表长度不足则退出
{
printf("modifyElem函数执行,pos值超出链表长度\n");
return 0;
}
pNode = pHead;
pNode->element = x;
printf("modifyElem函数执行\n");
return 1;

}

/* 10.向单链表的表头插入一个元素 */
int insertHeadList(Node **pNode,elemType insertElem)
{
Node *pInsert;
pInsert = (Node *)malloc(sizeof(Node));
//memset(pInsert,0,sizeof(Node));
pInsert->element = insertElem;
pInsert->next = *pNode;
*pNode = pInsert;
return 0;
}
/******************************************************************/
int main()
{
Node *pList=NULL;
int length = 0;

elemType posElem;

initList(pList); //链表初始化
printList(pList);

pList=creatList(pList); //创建链表
printList(pList);

sizeList(pList); //链表的长度
printList(pList);

isEmptyList(pList); //判断链表是否为空链表

posElem = getElement(pList,3); //获取第三个元素,如果元素不足3个,则返回0
printf("getElement函数执行,位置 3 中的元素为 %d\n",posElem);
printList(pList);

getElemAddr(pList,5); //获得元素5的地址

modifyElem(pList,4,1); //将链表中位置4上的元素修改为1
printList(pList);

insertHeadList(&pList,12); //表头插入元素12
printList(pList);

clearList(pList); //清空链表
system("pause");
return 0;
}

转载于:https://www.cnblogs.com/jdw513/p/5341517.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值