毛小兔
毛小兔
全部文章
C++
API(1)
BUG(3)
Eclipse(3)
Go(1)
ibatis(1)
IDEA(6)
java(25)
kafka(2)
maven(1)
mybatis(1)
MYSQL(3)
Nginx(1)
oracle(2)
springboot(1)
sql(6)
SSH(2)
tomcat(1)
weblogic(1)
前端(5)
操作系统(1)
数据库(2)
未归档(1)
电脑日常(2)
程序人生(8)
软件工程(1)
题解(2)
归档
标签
去牛客网
登录
/
注册
毛小兔的博客
全部文章
/ C++
(共3篇)
【C++编程赛】(1)哈夫曼树
#include<iostream> using namespace std; int m = 0; typedef struct { int weight; int jilu;//记录编码的权值 int parent, lchild, rchild; }HTNode, *Huff...
2020-09-02
0
430
【C++编程赛】(2)二叉树基本操作
//二叉树基本操作 #include<iostream> #include <iomanip> using namespace std; int i=-1;//用于记录二叉树元素的层次(按树状打印输出) int j=-1;//用于记录二叉树元素的层次(按凹入表示输出) in...
2020-09-02
0
480
【C++编程赛】(3)顺序栈基本操作
#include<iostream> #include<fstream> using namespace std; //顺序栈定义 #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define MAXSIZE 100//...
2020-09-02
0
504