2018-02-16 23:58:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @author huihut
|
|
|
|
|
* @E-mail:huihut@outlook.com
|
|
|
|
|
* @version 创建时间:2016年9月18日
|
|
|
|
|
* 说明:本程序实现了一个单链表。
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "stdio.h"
|
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
#include "malloc.h"
|
|
|
|
|
|
|
|
|
|
//5个常量定义
|
|
|
|
|
#define TRUE 1
|
|
|
|
|
#define FALSE 0
|
|
|
|
|
#define OK 1
|
|
|
|
|
#define ERROR 0
|
|
|
|
|
#define OVERFLOW -1
|
|
|
|
|
|
|
|
|
|
//类型定义
|
|
|
|
|
typedef int Status;
|
|
|
|
|
typedef int ElemType;
|
|
|
|
|
|
|
|
|
|
//测试程序长度定义
|
|
|
|
|
#define LONGTH 5
|
|
|
|
|
|
|
|
|
|
//链表的类型
|
|
|
|
|
typedef struct LNode {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
ElemType data;
|
|
|
|
|
struct LNode *next;
|
|
|
|
|
} LNode, *LinkList;
|
2018-02-16 23:58:28 +08:00
|
|
|
|
|
|
|
|
|
//创建包含n个元素的链表L,元素值存储在data数组中
|
|
|
|
|
Status create(LinkList &L, ElemType *data, int n) {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
LNode *p, *q;
|
|
|
|
|
int i;
|
|
|
|
|
if (n < 0) return ERROR;
|
|
|
|
|
L = NULL;
|
|
|
|
|
p = L;
|
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
|
{
|
|
|
|
|
q = (LNode *)malloc(sizeof(LNode));
|
|
|
|
|
if (NULL == q) return OVERFLOW;
|
|
|
|
|
q->data = data[i];
|
|
|
|
|
q->next = NULL;
|
|
|
|
|
if (NULL == p) L = q;
|
|
|
|
|
else p->next = q;
|
|
|
|
|
p = q;
|
|
|
|
|
}
|
|
|
|
|
return OK;
|
2018-02-16 23:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//e从链表末尾入链表
|
|
|
|
|
Status EnQueue_LQ(LinkList &L, ElemType &e) {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
LinkList p, q;
|
|
|
|
|
|
|
|
|
|
if (NULL == (q = (LNode *)malloc(sizeof(LNode)))) return OVERFLOW;
|
|
|
|
|
q->data = e;
|
|
|
|
|
q->next = NULL;
|
|
|
|
|
if (NULL == L) L = q;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
p = L;
|
|
|
|
|
while (p->next != NULL)
|
|
|
|
|
{
|
|
|
|
|
p = p->next;
|
|
|
|
|
}
|
|
|
|
|
p->next = q;
|
|
|
|
|
}
|
|
|
|
|
return OK;
|
2018-02-16 23:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//从链表头节点出链表到e
|
|
|
|
|
Status DeQueue_LQ(LinkList &L, ElemType &e) {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
if (NULL == L) return ERROR;
|
|
|
|
|
LinkList p;
|
|
|
|
|
p = L;
|
|
|
|
|
e = p->data;
|
|
|
|
|
L = L->next;
|
|
|
|
|
free(p);
|
|
|
|
|
return OK;
|
2018-02-16 23:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//遍历调用
|
|
|
|
|
Status visit(ElemType e) {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
printf("%d\t", e);
|
|
|
|
|
return OK;
|
2018-02-16 23:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//遍历单链表
|
|
|
|
|
void ListTraverse_L(LinkList L, Status(*visit)(ElemType e))
|
|
|
|
|
{
|
2019-06-04 23:18:46 +08:00
|
|
|
|
if (NULL == L) return;
|
|
|
|
|
for (LinkList p = L; NULL != p; p = p->next) {
|
|
|
|
|
visit(p->data);
|
|
|
|
|
}
|
2018-02-16 23:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main() {
|
2019-06-04 23:18:46 +08:00
|
|
|
|
int i;
|
|
|
|
|
ElemType e, data[LONGTH] = { 1, 2, 3, 4, 5 };
|
|
|
|
|
LinkList L;
|
|
|
|
|
|
|
|
|
|
//显示测试值
|
|
|
|
|
printf("---【单链表】---\n");
|
|
|
|
|
printf("待测试元素为:\n");
|
|
|
|
|
for (i = 0; i < LONGTH; i++) printf("%d\t", data[i]);
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
|
|
//创建链表L
|
|
|
|
|
printf("创建链表L\n");
|
|
|
|
|
if (ERROR == create(L, data, LONGTH))
|
|
|
|
|
{
|
|
|
|
|
printf("创建链表L失败\n");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
printf("成功创建包含%d个元素的链表L\n元素值存储在data数组中\n", LONGTH);
|
|
|
|
|
|
|
|
|
|
//遍历单链表
|
|
|
|
|
printf("此时链表中元素为:\n");
|
|
|
|
|
ListTraverse_L(L, visit);
|
|
|
|
|
|
|
|
|
|
//从链表头节点出链表到e
|
|
|
|
|
printf("\n出链表到e\n");
|
|
|
|
|
DeQueue_LQ(L, e);
|
|
|
|
|
printf("出链表的元素为:%d\n", e);
|
|
|
|
|
printf("此时链表中元素为:\n");
|
|
|
|
|
|
|
|
|
|
//遍历单链表
|
|
|
|
|
ListTraverse_L(L, visit);
|
|
|
|
|
|
|
|
|
|
//e从链表末尾入链表
|
|
|
|
|
printf("\ne入链表\n");
|
|
|
|
|
EnQueue_LQ(L, e);
|
|
|
|
|
printf("入链表的元素为:%d\n", e);
|
|
|
|
|
printf("此时链表中元素为:\n");
|
|
|
|
|
|
|
|
|
|
//遍历单链表
|
|
|
|
|
ListTraverse_L(L, visit);
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
|
|
getchar();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|