摘要: 1 #include<iostream> 2 #include<cstdlib> 3 #include<cstdio> 4 #define Max 50 5 #define OK 1 6 using namespace std; 7 typedef int ElemType; 8 typedef s 阅读全文
posted @ 2020-06-26 17:13 dhhu007 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1 //链式链表c语言版 2 typedef int ElemType; 3 typedef struct Node //链式链表定义 4 { 5 struct Node* next; 6 int data; 7 }ListLink; 8 9 ListLink* ListInit()//链式链表初始 阅读全文
posted @ 2020-06-26 15:28 dhhu007 阅读(152) 评论(0) 推荐(0) 编辑