CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - 树遍历

搜索资源列表

  1. lll333

    0下载:
  2. 这是一个利用扩展先序二叉树建立二叉树,并采用先序,中序,后序进行遍历的算法!-This is the first expansion of the use of a binary tree order to establish binary tree, and a first sequence, sequence, After traversal sequence for the algorithm!
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:838byte
    • 提供者:刘六龙
  1. fei333

    0下载:
  2. 这是一个利用扩展先序二叉树建立二叉树,且利用非递归算法进行中序遍历的算法!-This is the first expansion of the use of a binary tree order to establish binary tree, and the use of non - recursive algorithm which preorder algorithm!
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1.38kb
    • 提供者:刘六龙
  1. 66

    0下载:
  2. 通过和用户交互的形式,按照先序遍历输入一个二叉树,二叉数采用数组的结构存储,按层次遍历给结点编号,父亲结点和左右孩子通过两个公式联系,如父亲结点是i,则左孩子为2i+1,右孩子为2i+2.初始数组均被赋成星号,用户理论上可以输入ASCII码以内的任何值,但为了利于验证,只能输入可见字符(除作为标志的星号,回车表示该结点没有数据). 该程序的先序建树,先序输出以及中序输出是采用栈和循环实现的,后序输出是用递归来实现的,在先序建树子程序中,利用反逻辑,将叶子结点,树建完成,和用户输入回车等情况用
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:79.15kb
    • 提供者:zhangxuefang
  1. filesystem

    0下载:
  2. 使用ftw函数对目录进行遍历,函数原型是: int ftw(const char*dirpath, int(*fn)(const char*fpath, const struct stat *sb, int typeflag), int nopenfd) ftw函数遍历位于dirpath目录下的目录树,往下一层层地递归式遍历子目录 -Deepen the understanding of linux file system
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:78.93kb
    • 提供者:yu
  1. bianli

    0下载:
  2. 所谓遍历(Traversal)是指沿着某条搜索路线,依次对树中每个结点均做一次且仅做一次访问。访问结点所做的操作依赖于具体的应用问 题。 -The so-called ergodic (Traversal) refers to a particular search along the line, followed on the tree each node are done once and only once to visit. Access node operation done de
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:4.19kb
    • 提供者:渠梁梁
  1. twotrees

    0下载:
  2. 二叉树的数据结构算法 包括二叉树的创建、遍历、输出等,可以作为课程设计的原材料-Binary tree data structure algorithms, including tree creation, traversal, output and so on, can be used as raw materials for curriculum design
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-05
    • 文件大小:7.67kb
    • 提供者:jackpeng
  1. expmt3

    0下载:
  2. UNIX下编程:目录树的遍历。包含文件:apue.h、error2e.c、pathalloc.c、3.c-Under UNIX Programming: the traversal tree. Include file: apue.h, error2e.c, pathalloc.c, 3.c
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-04-15
    • 文件大小:4.87kb
    • 提供者:yy
  1. erchashubianli

    0下载:
  2. 此程序为c语言编写,可以实现二叉树的先,中,后遍历-This procedure for the c language, the first binary tree can be achieved, during and after the traversal
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-11
    • 文件大小:530byte
    • 提供者:白雪
  1. bitree

    0下载:
  2. 实现二叉树的基本功能,如构造一棵二叉树,在树中插入结点,先序后序中序遍历二叉树等功能-The basic function of the realization of binary tree, such as a binary tree structure, inserted in the tree nodes, in sequence after the first order binary tree traversal functions
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-01
    • 文件大小:2.36kb
    • 提供者:Helen22
  1. Maptheepthoftraversal

    0下载:
  2. 数据结构对二叉树的深度遍历用进栈,出栈的方法。-The depth of the binary tree data structure traversal to use into the stack, a stack method.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-13
    • 文件大小:2.43kb
    • 提供者:hujiao
  1. huffman

    0下载:
  2. 哈夫曼树的构造算法,提供对二叉排序树的遍历。-Hoffmann tree structure algorithm,Provide for binary sort tree traverse.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:1.02kb
    • 提供者:刘曦
  1. 5551

    0下载:
  2. 利用数据结构的知识生成一颗二叉树,利用非递归的算法遍历二叉树,主要借助栈来遍历二叉树-Data structures generated using a binary tree of knowledge, use of non-recursive binary tree traversal algorithm, the main stack to traverse binary tree with
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-06
    • 文件大小:185.1kb
    • 提供者:zhigang
  1. 66666

    0下载:
  2. 创建一颗线索二叉树,主要利用了数据结构的知识和递归算法,最后能够遍历整颗树的信息-Creating a threaded binary tree, the main advantage of the knowledge and recursive data structures algorithms, and finally be able to traverse the whole tree information
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-03
    • 文件大小:155.23kb
    • 提供者:zhigang
  1. ReadLog

    1下载:
  2. 使用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
  3. 所属分类:Windows Kernel

    • 发布日期:2015-10-27
    • 文件大小:247.56kb
    • 提供者:bing
  1. 2

    0下载:
  2. 利用c 语言,在linux环境下实现遍历文件夹构成目录树-folders tree
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-16
    • 文件大小:15.91kb
    • 提供者:戴杰
  1. Xpath

    0下载:
  2. 除了一步步遍历文档树查找元素外,Libxml2包含支持使用Xpath表达式取得指定结点集。完整的Xpath API文档在这里。Xpath允许通过路径文档搜索匹配指定条件的结点。-Using XPath requires setting up an xmlXPathContext and then supplying the XPath expression and the context to the xmlXPathEvalExpression function. The funct
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-06
    • 文件大小:1.74kb
    • 提供者:jonetsun
  1. windowsfilesearch-and-treelist-app

    0下载:
  2. 程序实用树控件做消息响应遍历文件,来解决不使用多线程遍历文件的卡死问题。-Practical procedures for traversing the tree controls to do the message response file, to resolve not to use multi-threaded file stuck traversal problem.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:25.13kb
    • 提供者:Liang
  1. bianli

    0下载:
  2. VC++遍历文件夹自动生成目录树,有兴趣的朋友学习一下。 -VC++ folder automatically traverse the directory tree, friends who are interested to learn about.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-06
    • 文件大小:12.17kb
    • 提供者:吴伟伟
  1. myfind

    0下载:
  2. 文件树遍历程序myfind,参照UNIX环境高级编程例子,系统程序设计-File tree traversal myfind, the reference to the UNIX environment, examples of high-level programming, system programming
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:9.55kb
    • 提供者:David
  1. er-cha-shu

    0下载:
  2. 一个二叉树遍历的例子,初学C++的人可以下载学习一下。-A binary tree traversal example, beginner C++ people can download to learn about.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-27
    • 文件大小:674byte
    • 提供者:李灏舟
« 12 3 »
搜珍网 www.dssz.com