- 博客(8)
- 收藏
- 关注
转载 [作业]两个有序表合并为一个有序表
[作业]两个有序表合并为一个有序表#include "stdio.h"#include "malloc.h"typedef struct LNode { int data; struct LNode *next;}LNode, *LinkList;LNode* InitLList_step(int low, int up,int step) { //创建步长为step的有序链表...
2019-06-12 15:42:14
1579
转载 [作业]单链表的创建、插入、删除、查找
[作业]单链表的创建、插入、删除、查找#include "stdio.h"#include "malloc.h"typedef struct LNode { int data; struct LNode *next;}LNode, *LinkList;LNode* InitLList(int low, int up) { LNode *head, *s, *r; //head,r...
2019-06-12 15:41:09
623
转载 进出栈
进出栈去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.//#include "stdio.h"#include "malloc.h"#include "process.h"#define STACK_INIT_SIZE 100; //初始分配内存#define STACKINCREAMENT 10; //储存空间分配增量int snumber = 17...
2019-06-12 15:38:59
275
转载 [作业]折半查找
[作业]折半查找去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.//https://blog.youkuaiyun.com/buaa_shang/article/details/10399923#include <iostream>using namespace std;typedef struct{ int r[100]; int length;}t...
2019-06-12 15:31:56
478
转载 [作业]图的邻接表表示法
[作业]图的邻接表表示法去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.//https://blog.youkuaiyun.com/buaa_shang/article/details/10399923#include <stdio.h>#include <stdlib.h>#define MAX_VERTEX_NUM 20typedef str...
2019-06-12 15:25:43
210
转载 [作业]树的孩子表示法
[作业]树的孩子表示法去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片./*https://www.cnblogs.com/ciyeer/p/9045746.html*/#include<stdio.h>#include<stdlib.h>#define MAX_SIZE 20#define TElemType char//孩子表示法...
2019-06-12 14:14:57
205
转载 [作业]树的孩子表示法
如何插入一段漂亮的代码片去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.// An highlighted block#include "stdio.h"#include "stdlib.h"#define MAX_SIZE 20#define TElemType char#define MAX_TREE_SIZE 100 //树的最大结点数#defi...
2019-06-09 21:59:17
1026
转载 [作业]链式栈的进栈和出栈
这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Ma...
2019-06-09 21:57:58
387
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人