摘要: 1、邻接矩阵的定义和初始化 #include<stdio.h> #include<malloc.h> #include<assert.h> #define Default_Vertices_Size 10 //顶点 #define T char //无向不带权的图 typedef struct Gr 阅读全文
posted @ 2024-09-29 08:43 颜欢兮 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、线索化二叉树的定义和初始化 #include<stdio.h> #include<malloc.h> #include<assert.h> #define ElemType char typedef struct BinTreeNode{ ElemType data; struct BinTre 阅读全文
posted @ 2024-09-29 08:41 颜欢兮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、二叉树的定义和初始化 //二叉树节点定义 typedef struct BinTreeNode{ ElemType data; struct BinTreeNode* leftChild; struct BinTreeNode* rightChild; }BinTreeNode; //二叉树定义 阅读全文
posted @ 2024-09-29 08:39 颜欢兮 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、稀疏矩阵的压缩存储定义和初始化 #include<stdio.h> #include<stdlib.h> #include<malloc.h> #include<assert.h> #include<memory.h> #define ElemType int #define MAXSIZE 1 阅读全文
posted @ 2024-09-27 09:03 颜欢兮 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1、广义的定义和初始化 #include<stdio.h> #include<malloc.h> #include<string.h> #include<assert.h> #include<stdlib.h> #define ATOM_TYPE int typedef enum { HEAD, A 阅读全文
posted @ 2024-09-27 09:01 颜欢兮 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、代码实现 #include<stdio.h> #include<malloc.h> #include<assert.h> #include<string.h> typedef struct HeapString{ char* ch; int length; }HString; //初始化 voi 阅读全文
posted @ 2024-09-27 08:59 颜欢兮 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、代码实现 #include<stdio.h> #include<malloc.h> #include<assert.h> #include<string.h> //"abcdef" => "abcdef/0 // 用数组第一个空间存储字符串长度 5 a b c e f #define MAX_S 阅读全文
posted @ 2024-09-27 08:58 颜欢兮 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、链队 #include<stdio.h> #include<malloc.h> #include<assert.h> #define ElemType int typedef struct QueueNode{ ElemType data; struct QueueNode* next; }Qu 阅读全文
posted @ 2024-09-16 15:48 颜欢兮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、顺序栈 #include<stdio.h> #include<malloc.h> #include<assert.h> #define ElemType int #define STACK_INIT_SIZE 8 #define STACK_INC_SIZE 3 //顺序栈的定义 typedef 阅读全文
posted @ 2024-09-16 15:45 颜欢兮 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<assert.h> #include<malloc.h> typedef int ElemType; typedef struct Node{ ElemType data; struct Node* prior; struct Node* nex 阅读全文
posted @ 2024-09-16 15:44 颜欢兮 阅读(3) 评论(0) 推荐(0) 编辑