搜索资源列表

  1. 数据结构实验程序

    0下载:
  2. 包括插入法查找树生成程序、树的队列法层次遍历、用链式栈对树中序遍历、制作二插查找树的镜像副本-including the insertion procedure generation search tree, the tree traversal level cohort method, using chain stack of tree traversal, interpolation search produced two mirr
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:3091
    • 提供者:王荣枫
  1. lianshizhan

    0下载:
  2. 本源码是关于数据结构的链式栈的操作的源码,你可以下载编译。-source of the data structure of the chain of operation of the stack source code, you can download the compiler.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:906
    • 提供者:李键
  1. recurve

    0下载:
  2. 递归运算(栈的应用)的c++程序。程序首先给出链式栈节点类定义,然后给出了实现,最后进行了操作测试,并输出结果。 recurve.cpp就是程序 recurve.txt是运行结果-recursive algorithm (Application Stack) c procedures. Procedures is the first chain Stack node definition, and then given the
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1254
    • 提供者:丁丁
  1. 栈的操作

    0下载:
  2. 建立链式栈并完成入栈,出栈,判栈空和求栈长的操作-establish and complete chain stack pushed out stack, stack space and contracting for the operation of stack -
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:917
    • 提供者:王丹
  1. 栈的操作

    0下载:
  2. 建立链式栈并完成入栈,出栈,判栈空和求栈长的操作-establish and complete chain stack pushed out stack, stack space and contracting for the operation of stack-
  3. 所属分类:中文信息处理

    • 发布日期:2024-06-12
    • 文件大小:1024
    • 提供者:王丹
  1. tNQueens

    0下载:
  2. 链式结构堆栈类的类模板实现及用堆栈类求解N皇后问题-chain structure of the stack type and class template stack used for solving problems N Queen
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:2048
    • 提供者:liuben
  1. 数据结构实验程序

    0下载:
  2. 包括插入法查找树生成程序、树的队列法层次遍历、用链式栈对树中序遍历、制作二插查找树的镜像副本-including the insertion procedure generation search tree, the tree traversal level cohort method, using chain stack of tree traversal, interpolation search produced two mirr
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:3072
    • 提供者:王荣枫
  1. lianshizhan

    0下载:
  2. 本源码是关于数据结构的链式栈的操作的源码,你可以下载编译。-source of the data structure of the chain of operation of the stack source code, you can download the compiler.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:1024
    • 提供者:李键
  1. recurve

    0下载:
  2. 递归运算(栈的应用)的c++程序。程序首先给出链式栈节点类定义,然后给出了实现,最后进行了操作测试,并输出结果。 recurve.cpp就是程序 recurve.txt是运行结果-recursive algorithm (Application Stack) c procedures. Procedures is the first chain Stack node definition, and then given the
  3. 所属分类:其他小程序

    • 发布日期:2024-06-12
    • 文件大小:1024
    • 提供者:丁丁
  1. zhanheduilie

    0下载:
  2. (1)采用链式存储实现栈的初始化、入栈、出栈操作。 (2)采用顺序存储实现栈的初始化、入栈、出栈操作。 (3)采用链式存储实现队列的初始化、入队、出队操作。 (4)采用顺序存储实现循环队列的初始化、入队、出队操作。 (5)在主函数中设计一个简单的菜单,分别测试上述算法。 (6)综合训练:1)利用栈实现表达式求值算法。 2)利用栈实现迷宫求解。 -(1) the use of chain-stor
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:102400
    • 提供者:jack
  1. DataStructureBasic

    0下载:
  2. 数据结构基础代码,包括线性表顺序表,链式表操作,队列栈操作,二叉树操作等。-Data structure based on the code, including the linear sequence table table, table chain operation, queue stack operation, binary tree operation.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:17408
    • 提供者:韩晓亮
  1. lianshizhan

    0下载:
  2. 链式栈(不是数组实现)的C++代码 用处很多的哦 尤其对那些正在学数据结构的同学而言-Chain stack (not the array to achieve) the C++ Code Oh, a lot of useful especially for those who are school students in terms of data structure
  3. 所属分类:Windows编程

    • 发布日期:2024-06-12
    • 文件大小:7168
    • 提供者:yuzhihua
  1. a.doc

    0下载:
  2. 1) 根据栈数据结构,分别建立一个顺序栈和链式栈并实现其上基本操作(出栈和入栈等); 2) 根据队列数据结构,分别建立链队列和循环队列,并完成其上的基本操作(出入队列等); 3) 参考P80表达式求值例题,应用栈的基本操作实现简单表达式求值运算及其进出栈模拟过程(给出程序执行过程中栈的变化过程); 4) 阅读P83栈与递归的实现一节内容和3阶汉诺塔问题。使用栈数据结构解决3阶汉诺塔问题,编写程序并模拟栈及其汉诺塔的搬运过程(
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:4096
    • 提供者:sad
  1. TEST

    0下载:
  2. 数据结构试验 实验一 线性表的顺序表示与实现 实验二 线性表的链式表示与实现 实验三 栈与队列及其应用 实验四 二叉树的应用 实验五 图的遍历与应用 实验六 查找技术 实验七 内部排序 全部源码-Experimental test data structure form a linear sequence of that experiment and realization of the Second l
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:398336
    • 提供者:稻草人
  1. datastruct_example

    0下载:
  2. 本人讲授数据结构课程时的所写的示例程序,结构清晰规范,有注释,全部可编译运行,包括如下代码: 长整数:ch0_bigint2.c 顺序表的实现:ch2_stable.c 链表的实现ch2_ltable.c 合并两个有序表:ch2_stable_merge.c 表达式计算:ch3_express.c 队列的链式实现:ch3_lqueue.c 栈的链式实现:ch3_lstack.c 迷宫求解:ch3_ma
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:14336
    • 提供者:kk.h
  1. linkedstack

    0下载:
  2. 链式栈,应该是正确的,包含node的头文件和c-Chain stack, it should be correct, the node contains the header files and cpp
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:1024
    • 提供者:蛮大汉
  1. data_structure2

    0下载:
  2. 5、顺序栈 SeqStack.h Test.cpp 6、链式栈 StackNode.h LinkStack.h Test.cpp 7、顺序队列 SeqQueue.h Test.cpp 8、链式队列 QueueNode.h LinkQueue.h Test.cpp -5, the order of the stack SeqStack.h Test.cpp 6, c
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:2048
    • 提供者:XS
  1. bracketmatch

    0下载:
  2. 检查算数表达式中括号是否匹配 使用“链式栈”模板定义作为数据结构来实现括号匹配。-Check the arithmetic expression in parentheses match use " chain stack" template definition as a data structure to achieve the matching parenthesis.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:1024
    • 提供者:
  1. 使用链式栈搜索目录下的文件

    0下载:
  2. 在Linux系统中编译使用,通过使用链式栈实现目录的检索功能,可以检索某个目录下的所有文件。(It is compiled and used in the Linux system to retrieve all the files under a directory by using the chain stack to implement the retrieval function of the directory.)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-06-12
    • 文件大小:8192
    • 提供者:葡萄美酒
  1. 第一次实验课

    0下载:
  2. 定义单链表类、链式栈类、顺序队列类。 2、 实验验证如下算法的正确性、各种功能及指标: 1)单链表插入操作:在第 i 个元素之后插入值为 x 的结点; 2)单链表删除操作:删除表头结点、表尾结点; 3)查找操作:查找值为 x 的元素在单链表中出现的位置(是链表中的第几个元素); 4)压栈和弹栈操作; 5)出队和入队操作。(Define single chain table class, chain stack class,
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-12
    • 文件大小:2252800
    • 提供者:kaiser1998
« 12 3 4 5 6 7 8 »

源码中国 www.ymcn.org