10 2023 档案

摘要:哈夫曼树 #include <iostream> using namespace std; struct node { int lchild; int rchild; int parent; int weight; }; struct hftree { node* data; int length; 阅读全文
posted @ 2023-10-20 22:57 aallofitisst 阅读(8) 评论(0) 推荐(0)
摘要:今天学习了avl二叉排序树 #include<iostream> using namespace std; struct tree { tree* lchild=NULL; tree* rchild=NULL; int data; int height; }; int getHeight(tree* 阅读全文
posted @ 2023-10-12 00:33 aallofitisst 阅读(8) 评论(0) 推荐(0)
摘要:今天学习了html中调用mysql数据库 阅读全文
posted @ 2023-10-09 22:05 aallofitisst 阅读(5) 评论(0) 推荐(0)