数据结构
文章平均质量分 77
一箫奈何
这个作者很懒,什么都没留下…
展开
-
avl tree的插入删除操作代码
#include using namespace std;struct node//avl tree结点{ int entry; struct node *left=NULL; struct node *right=NULL;};class avl_tree{public: node * root=NULL;//根节点 node* ins原创 2017-05-29 17:54:05 · 333 阅读 · 0 评论 -
C++STL常用数据结构
目录一、vector1.构造函数:2.插入函数:3.删除函数:4.查找函数5.大小函数6.其他函数二、stack三、array1.声明一个array2.迭代器函数3.数组大小函数4.元素访问函数5.其他函数四、list1.构造函数2.迭代器3.容量函数4.元素访问函数5.操作函数五、map1.构造函数2.迭...原创 2019-07-18 13:41:18 · 2442 阅读 · 0 评论