12 2019 档案

摘要:#pragma once #include <iostream> #include <algorithm> template <typename T> class AVLTreeNode { public: T key; int height; AVLTreeNode* left; AVLTreeNode* right; AVLTreeNode(T value, AVLTreeNode *l, A 阅读全文
posted @ 2019-12-27 15:15 Vzf 阅读(173) 评论(0) 推荐(0)
摘要:1 #ifndef BSTREE_H 2 #define BSTREE_H 3 4 #include <iostream> 5 6 template <typename T> 7 class BSTreeNode { 8 public: 9 T key; 10 BSTreeNode *left; 11 BSTreeNode *right; 12 BSTreeNode *parent; 13 BST 阅读全文
posted @ 2019-12-26 19:45 Vzf 阅读(439) 评论(0) 推荐(0)
摘要:#ifndef M_DEQUE_H #define M_DEQUE_H /*************************************** * Description:deque实现,使用场景,类似排队系统,队首和队尾不要频繁的删除和天剑 * Create:2019/12/7 * Au 阅读全文
posted @ 2019-12-17 15:36 Vzf 阅读(257) 评论(0) 推荐(0)
摘要:#ifndef _M_LIST_H #define _M_LIST_H /*************************************** * Description:list实现 * Create:2019/12/1 * Author:zhangfeng * History: * 2 阅读全文
posted @ 2019-12-03 14:14 Vzf 阅读(241) 评论(0) 推荐(0)