有序链表的构建
头文件
#include<stdio.h>
#include<assert.h>
#include<malloc.h>
封装节点
struct Data {
int mmData;//数值
int index;//序号
};
typedef struct Node {
Data data;//自定义Data类型的数据
struct Node* next;//next指针
}*LPNODE,NODE;
封装链表
typedef struct List
原创
2021-08-03 22:14:57 ·
433 阅读 ·
0 评论