CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 栈,基本,操作

搜索资源列表

  1. wuziqi_c_graphics

    0下载:
  2. 一个使用C语言写的五子棋程序,在C语言中实现了汉字输出,图形界面的绘制,以及栈的一些基本操作 。是一个在C语言中图形编程入门的学习实例。 基本操作: 空格和回车是下棋; 回退键是悔棋; ESC离开-a C language used to write the 331 procedures in the C language to fulfill the export of Chinese characters, a graphical interface mapping
  3. 所属分类:图形/文字识别

    • 发布日期:2008-10-13
    • 文件大小:167890
    • 提供者:ARK
  1. stack

    0下载:
  2. 实现对战的基本操作,如出栈、入栈,取栈顶元素、清空栈等,通过顺序栈和链栈实现-the base function of stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:2580
    • 提供者:杨涛
  1. SeqStack

    0下载:
  2. C++代码,运用类,模板,实现栈的基本操作。实现入栈出栈,取顶操作。-C++ code, the use of classes, templates, to achieve the basic operation of the stack. Implement stack stack, take the top operation.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:926
    • 提供者:silentshawn
  1. da

    0下载:
  2. (1)用顺序栈实现一个支持大整数的加法和减法计算功能的计算程序。 (2)实现创建顺序栈,入栈,出栈等基本操作,并使用这些基本操作协助完成大整数加法的实现。 (3)用if或switch语句设计一个如下页的选择式菜单。-(A) implement a stack with support for large sequential integer addition and subtraction calculations calculation program. (2) in order
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1139
    • 提供者:范先生
  1. CPPexam9

    1下载:
  2. 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测试程序 lab9_1.cpp 实现链表的基本操作。 2. 编写程序 link.h 实现例 9-6 的链表类。在测试程序 lab9_2.cpp 中声明两个整型链表 A和 B,分别插入 5 个元素,然后把 B 中的元素加入 A 的尾部。 3. 编写程序 queue.h,用链表实现队列(或栈)类。在测试程序 lab9_3.cpp 中声明一个 整型队列(或栈)对象,插入 5 个整数,压入队列(或栈),再依次取出并显示出来。 -1
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:650469
    • 提供者:wolf
  1. CPPexam9

    0下载:
  2. 1. 声明 Point 类,有坐标_x,_y 两个成员变量;对 Point 类重载“++”(自增)、“--”(自减)运算符,实现对坐标值的改变。 2. 声明一个车(vehicle)基类,有 Run、Stop 等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从 bicycle 和 motorcar 派生出摩托车(motorcycle)类,它们都有 Run、Stop 等成员函数。观察虚函数的作用。 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-06
    • 文件大小:1030959
    • 提供者:wolf
  1. Stack

    0下载:
  2. 栈的基本操作和扩展操作实现,自己编译,多文件连接,完美运行- The basic operation of the stack and extended operations to achieve their translation, multi-file access, perfect run
  3. 所属分类:Data structs

    • 发布日期:2017-05-17
    • 文件大小:4378556
    • 提供者:Scott
  1. Ch4-StackQueue

    0下载:
  2. 链栈的C语言实现,可以入栈,出栈,求栈中元素个数等、线性栈的C语言实现,可以栈的基本操作,线性队列的C语言实现,实现队列的出队,入队等-Chain stack of C language, can stack, the stack, the stack number of elements, such as seeking a linear stack of C language, basic operations can stack linear alignment of the C lang
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-26
    • 文件大小:373800
    • 提供者:吴健银
  1. SequenceStack

    0下载:
  2. 这个程序是实现顺序栈的基本操作,包括建空栈,插入,删除,查找,清空,销毁。栈在解决问题的时候用的还是比较多的,必须掌握。-This program is the basic operation of the order of the stack to build an empty stack, insert, delete, find, clear, destroy. Stack is used to solve the problem, or more, we must master.
  3. 所属分类:Graph program

    • 发布日期:2017-04-12
    • 文件大小:1287
    • 提供者:ewjrkilha
  1. stack1

    0下载:
  2. 栈的链式存储结构与操作,栈的基本操作,可以ac过-The basic structure and operation of the chain store operations, stack stack can be ac over
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:1020719
    • 提供者:杨浩
  1. Stack

    0下载:
  2. 栈的基本操作,包括入栈,出栈,栈满和栈空的情况等-operation of stack
  3. 所属分类:Other systems

    • 发布日期:2017-04-30
    • 文件大小:240676
    • 提供者:zidong liu
  1. 4

    0下载:
  2. 初始化栈、判栈为空、出栈、入栈、求栈顶元素等运算,自己填写主函数。 利用顺序栈的基本操作,实现将任意一个十进制整数转化为R进制整数 3、用顺序存储来定义循环队列结构。编程实现, 初始化队列、判队列为空、出队列、入队列、求队列头部元素等运算。 只有尾指针的单循环链表表示的队列的入队和出队程序.-Initialize the stack, the stack is empty sentence, stack, stack, seeking the top element and ot
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:110852
    • 提供者:露露
  1. SequenceStack

    0下载:
  2. 这个程序是实现顺序栈的基本操作,包括建空栈,插入,删除,查找,清空,销毁。栈在解决问题的时候用的还是比较多的,必须掌握。-This program is the basic operation of the order of the stack to build an empty stack, insert, delete, find, clear, destroy. Stack is used to solve the problem, or more, we must master.
  3. 所属分类:Graph program

    • 发布日期:2017-04-12
    • 文件大小:1495
    • 提供者:k4262954lufenx
  1. StackOperation

    0下载:
  2. 主要是实现堆栈的一些基本操作,比如:出栈,清空堆栈,访问堆栈顶元素,以及测试堆栈状态等。-Realize the main stack are some of the basic operations, such as: out of stack, empty the stack, the stack top element of the visit, as well as the test stack status.
  3. 所属分类:Communication

    • 发布日期:2017-04-12
    • 文件大小:946
    • 提供者:canag0ngnn
  1. Stack

    0下载:
  2. 基本数据结构——栈的实现,自己实现的栈的使用,可以完成基本的入栈出栈判空判满的操作,仅供参考-Implementation of Stack
  3. 所属分类:Console

    • 发布日期:2017-04-30
    • 文件大小:52031
    • 提供者:Mr.Bubbles
  1. zhan

    0下载:
  2. 栈 假设一个算术表达式中可以包含三种括号:园括号“(”和“)”、方括号“[”和“]”、花括号“{”和“}”,且这三种括号可按任意的次序嵌套使用。编写判别给定表达式中所含括号是否正确配对出现的算法(已知表达式已存入数据元素为字符的顺序表中)。要求:顺序栈存储;实现顺序栈的基本操作;调用基本操作完成。-The stack Suppose a arithmetic expressions can contain three kind of parentheses: garden \ (\ a
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6016
    • 提供者:huangyinghao
  1. linklist

    1下载:
  2. c语言的基本结构:栈,链表,二叉树;基本操作:排序,查找,表达式求值-The basic structure of c language: stacks, linked lists, binary tree basic operations: sort, search, expression uation
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2016-12-01
    • 文件大小:1114112
    • 提供者:任浩凯
  1. jianlizhan

    0下载:
  2. 建立堆栈,实现有关堆栈的插入、删除、入栈、出栈等基本操作-Establishment of a stack, the stack to achieve the basic operation of the relevant insert, delete, stack, stack, etc.
  3. 所属分类:CSharp

    • 发布日期:2017-05-05
    • 文件大小:190087
    • 提供者:雷震
  1. 数据结构

    0下载:
  2. (1)建立链队列,并实现一些元素入队,实现链队列的建立和入队的基本操作; (2)实现某些元素出队,实现链队列的出队的基本操作((1) the establishment of the chain queue, and realize some basic elements into the team, and the team operation to achieve the establishment of the chain queue; (2) to realize some elem
  3. 所属分类:数据结构

    • 发布日期:2018-01-03
    • 文件大小:1024
    • 提供者:晌午v
  1. xboot-plus-master xboot官方卖198的学习版

    0下载:
  2. xboot-plus-master boot官方销售198的资源 可以在码云上搜索xboot 操作一个GPIO,需要仔细对照芯片手册,好繁琐;每换一个主控芯片,所有工作从头来过;想开发个现代点支持各种动效的UI,发现几乎是不可能的事情;各种协议栈有如天书一样,阅读都困难,何谈编写;虚拟机技术很流行,功能很强大,想自己移植个,可是困难重重;还是放开自己吧,让XBOOT来替你解决这些问题。XBOOT不仅仅是一款功能强大、可移植性强、代码复用率高的嵌入式系统bootloader,而且还是一款SO
  3. 所属分类:JSP源码/Java

« 1 2 3 4 5 67 8 9 »
搜珍网 www.dssz.com