搜索资源列表
动态加载树结构到MFC的树控制
- 动态加载树结构到MFC的树控制-dynamically loaded tree structure to control the tree MFC
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;
MFC做的二叉树
- 这是VC++6.0开发环境下做的MFC界面编程 能够以树的形式输出
树的遍历操作
- 主要用MFC实现树的递归前序,中序,后序遍历,中序非递归遍历
二叉树的前序中序后序遍历MFC
- 我这个主要实现的是创建二叉树,并实现前序中序后序的递归遍历。
B-Tree.在MFC的SDI中动态产生二叉树并动态使用箭头进行遍历
- 在MFC的SDI中动态产生二叉树并动态使用箭头进行遍历,难得一见,B-Tree in SDI
MFC 树形控件和列表控件的结合CtreeCtrl
- MFC 树形控件和列表控件的结合CtreeCtrl 和CListCtrl,MFC tree control and the combination of list control CtreeCtrl and CListCtrl
图书馆管理系统.rar
- C语言作的图书管理系统 该程序能实现对一本书进行采编入库、清除库存、借阅图书、归还图书且记录借书的用户信息,还有查找书、显示图书目录的功能,并且以该书的书号为关键字建立一个B_树。,C language does books management system management system this procedure can realize to a book carries on picks enrolls the storehouse, the elimination stock
MFCShellFolder.rar
- MFC和IShellFolder、SHGetSpecialFolderLocation实现windows目录树,MFC and IShellFolder, SHGetSpecialFolderLocation achieve the windows directory tree
TreeView.rar
- CTreeView 树状视图 MFC 树形视图,CTreeView MFC TreeView
mfctree
- 树型控件的显示,鼠标控制,节点的添加,修改,删除等-Tree control displays, mouse control, the node to add, modify, delete, etc.
SRC.ZIP
- 很不错的vc++ mfc 树控件学习,和windows资源器一样。-Very good vc++ mfc tree control study, and the same browser windows resources.
treelist
- 实现树状目录的显示和在MFC中单文档结构中的实现-Tree implementation of the display and at MFC single document structure in the implementation
VCMFCTreeList
- VC MFC 实现的TreeList控件,左边为树,右边为列表-VC MFC implementation TreeList controls the left side of the tree, right in the list
ID3JueCheTree
- 人工智能ID3决策树算法的实现,使用了MFC编程,既有算法又有界面。-Artificial Intelligence ID3 decision tree algorithm, use the MFC programming, both algorithm and interface.
BinaryTree
- 用MFC实现的二叉树的建立、查找、删除、插入-MFC achieved with the establishment of a binary tree, find, delete, insert
Bst
- 我们的结课作业。二叉排序树的各种操作,以及二叉排序树的绘制。MFC框架编程,界面友好-Results of our class work. Binary Sort Tree various operations, and the binary sort tree drawing
Construction-of-the-tree-view-control-using-MFC.ra
- 基于微软VC++平台用MFC构建树视图控,很好的例子-Based on Microsoft platform using VC++ MFC build tree view control, a good example
MFC XML
- 实现了一个CXMLFile类来操作XML文件,对应用程序设置选项的保存作了特别的接口支持,并实现了一个CPersistentTreeCtrl(一个可保存标签项的树控件)来演示CXMLFile类的用法。 -Implements a class to manipulate XML files CXMLFile, set the options for saving the application made a special interface support, and implementat
二叉树
- 利用c++语言实现二叉树算法,并附有注释。可用于数据处理。(The binary tree algorithm is implemented with c language and annotated. Can be used for data processing.)