- 博客(9)
- 收藏
- 关注
原创 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1
使用STS,或者eclipse,idea使用maven打包报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1可在pox.xml将<java.version>11</java.version>(有些是10,看个人情况)这一行的的Java版本号改为8,就可以下载成功了如图所示...
2020-08-30 00:37:40
300
原创 严蔚敏C语言版数据结构二叉树的基本操作
#include <stdio.h>#include<stdlib.h>#define ok 1#define error 0#define overflow -1typedef char telemtype;typedef int status;typedef struct bitnode{ telemtype...
2020-03-06 18:31:16
1183
1
原创 严蔚敏C语言版数据结构之串的全部操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0#define overflow -1#define maxstrlen 255typedef unsigned char sstring[maxstrlen + 1];//s[0]用来存放长度typedef int status; ...
2020-03-06 18:30:23
545
原创 严蔚敏C语言版数据结构之循环队列的基本操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0#define maxsize 90//最大队列长度typedef int status;typedef int qelemtype;typedef struct{ qelemtype *base; int front; in...
2020-03-06 18:29:10
621
原创 严蔚敏C语言版数据结构之链队列的九个基本操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0typedef int status;typedef int qelemtype;typedef struct qnode{ qelemtype data; struct qnode *next;}qnode, *queuep...
2020-03-06 18:27:52
315
原创 严蔚敏C语言版数据结构栈的九个基本操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0#define stack_init_size 100 //存储空间的初始分配量#define stackincrement 10 //增加内存空间时的增量typedef int status;t...
2020-03-06 18:26:33
375
原创 严蔚敏C语言版数据结构之单链表的十二个基本操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0typedef int status;typedef int elemtype;typedef struct lnode{ elemtype data; struct lnode *next;} lnode, *linklis...
2020-03-06 18:24:23
1037
原创 严蔚敏老师C语言版数据结构之顺序表的12个基本操作
#include<stdio.h>#include<stdlib.h>#define ok 1#define error 0#define list_init_size 100 //线性表存储空间的初始分配量#define listincrement 10 //增加内存空间时的增量typedef int status;...
2020-03-06 18:22:53
629
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人