搜索资源列表
FolderDialog_Src
- 一个用来生成不同树型视图节点的例子-used to generate a different TreeView nodes example
ls
- 实现UNIX下的ls全部功能,同时添加了可以生成目录树.实现内容:1.如何读取目录的内容 2.目录排序 3.文件类型以及如何知道文件的类型 4.位操作及掩码的使用 5.用户与组ID数据库 6.UNIX文件系统的内部结构:i-节点和数据块 7.更改当前目录 8.输出颜色的改变和分栏 9.学习并实现ls命令各参数 10.解析命令行参数 -Ls under UNIX to achieve full functionality, while adding a di
RSAVC2
- 是很不错的RSA代码!不是本人的!为了大家学习!进步!此控件是为了让 DataGridView 支持多维表头,而设计的. 通过导入一个树图(TreeView)的概念,每一个节点对应到一个表头单元格. 在多维标题中的每一个最底层的标题相当于 TreeView 中最低深度的节点. C++写的椭圆曲线加密算法库源码 -RSA is a very good code! Not own! For them to learn from! Progress! This DataGridView contr
pyinotify
- 大量小文件的实时同步方案,通过Hash Tree来实现同步,既有通过日志来同步的软实时特点(msyql, bdb等),也可以保证最终数据的一致性(rsync, unison等)。Hash Tree的大体思路是将所有数据存储成树状结构,每个节点的Hash是其所有子节点的Hash的Hash,叶子节点的Hash是其内容的Hash。这样一旦某个节点发生变化,其Hash的变化会迅速传播到根节点。需要同步的系统只需要不断查询跟节点的hash,一旦有变化,顺着树状结构就能够在logN级别的时间找到发生变化的内
tree
- windows下实现树的部分操作:插入节点,删除节点-windows to achieve the tree part of the operation: insert node, delete node, etc.
44441
- 利用数据结构的知识生成一颗哈弗曼树,实现遍历数的节点,输出所要的节点信息-Data structures generated using a Havermann tree of knowledge, to achieve the number of nodes traversed, the output of the node information to be
ReadLog
- 使用CTreeCtrl遍历硬盘所有文件,然后显示出来,点击树节点,在右边的CListCtrl里用图标显示出该文件下的文件,鼠标左键点击某文件,实现打开文件的功能。 功能类似于WINDOWS的文件夹功能-CTreeCtrl traverse all the files using the hard disk, and then displayed, click on the tree node, the right to use CListCtrl in icon shows the file
Exercise2
- 1、(实习题) 请编写一个程序,确定二叉树的特征。如:每个节点的层次,从根到该节点的枝长(路径长度),子孙的个数及祖先的个数。每个节点在前序、中序、后序中的访问的序号。-1, (practice questions) Write a program to determine the characteristics of a binary tree. Such as: the level of each node, the node from the root to shoot length (
MutiTree-santaishu
- 树控件节点的三种状态,节点前有复选框,可设置其状态。-Three tree control node status, node before check box, and can set its state.
AddressList
- 如何在属性列表中添加付节点和子节点的方法,在列表中显示树控件的值的方法。-How to pay in the property list to add nodes and child nodes by way of the tree control displayed in the list of values.
binary_tree
- 二叉树先序、后序遍历,节点插入、删除,用C实现,操作系统平台为linux系统-binary tree
Binary-tree-travel-around
- 建立一个二叉树,并实现添加,删除节点,周游二叉树的功能。-Binary tree travel around
TreeToList
- 将二叉搜索树变为双向链表,先序遍历输入节点,输出双向链表-The binary search tree into a doubly linked list, doubly linked list of the preorder traversal of the input node, output
vctree
- VC++在树控件中插入项,一个树控件菜单TreeView的简单应用源码,演示如何在TreeView树控件中插入节点项。-VC++ insert the item in the tree control, a tree control menu the TreeView simple application source code, demonstrates how to insert a node in the TreeView tree control item.
kill
- Linux内核编程,设计某一个函数,输入为Linux系统某一个进程的进程号(PID),函数将*该进程的所有子孙。Linux内核进程家族为多叉树数据结构,以祖先进程为根节点。对于这种数据结构,后序遍历树的每个节点,在遍历同时删除节点,就可以删除整个进程树。-Linux kernel programming, design one function, one input for a Linux system process ID (PID), the function will kill all
ThreeTree
- VC 多选树-三态树,实现了系统中树的不同节点显示不同的状态。-Tree status tree
avl-1.4.0
- AVL树的C++实现,可以说实现节点建立、添加、删除、树的单旋转与双旋转-implement avl tree in C++
BPTree
- 1、枝干节点的关键字在每个叶子节点的最后一个 2、叶子节点中的Vals不是值集合,而是值指针集合,主要是减少移动时的拷贝时间 本来也想Keys也做也指针集合,但是会有一个问题,如果当做数据库的索引,它就必需调阅多个页 当然Keys是值集合也会有问题,对于字符串来作Key就会有对象拷贝的问题 因此我觉得要实现两种B+树,一种是值集合的,一种是值指针集合的, 对此有兴趣的朋友可以共同探讨,发邮件至 xtlxs1976@163.com
binary-tree
- 用二叉链表存储二叉树,用“扩张先序遍历序列”创建二叉链表,对二叉树进行前、中、后序的遍历以及层次遍历,输出度为0、1、2的节点及节点数,线索化二叉树,根据线索化的二叉树查找二叉树中任意节点的前驱、后继,通过线索二叉树进行二叉树节点的删除、插入,以及按树状打印二叉树。-Used to store binary tree binary tree, use the " expansion preorder sequence" to create the binary tree, th
btree
- 树的一些常见操作,树的创建,树节点删除,树的遍历。-Some common operations of tree, tree, the tree node deletion, tree traversal.