摘要: http://www.520xiazai.com/soft/CLion-2020.html 阅读全文
posted @ 2020-10-14 21:51 ethon-wang 阅读(326) 评论(2) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 /*此处是顺序栈数据结构定义*/ 4 typedef int DataType; 5 struct seqStack 6 {//有3个数据成员 7 int MAXNUM;//用于记录顺序栈中能存放的最大元素个数的 整型 MAXNUM 8 int to 阅读全文
posted @ 2020-10-14 20:58 ethon-wang 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 using namespace std; 3 4 typedef char DataType; 5 6 //二叉树数据结构 7 struct node 8 { 9 DataType info ; //存放结点数据 10 struct node *lch 阅读全文
posted @ 2020-10-14 20:57 ethon-wang 阅读(411) 评论(0) 推荐(0) 编辑