- 博客(1)
- 收藏
- 关注
原创 单链表基本操作的实现
//单链表基本操作的实现 #include #include <bits/stdc++.h> using namespace std; typedef int Elemtype; typedef struct LNode { Elemtype data; struct LNode next; }LNode,Linklist; int Initlist(Linklist &H) { H=new LNode; if(HNULL){printf("\n无内存空间分配\n");return 0
2020-09-25 20:50:50 944
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人