CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载 Windows编程 其他小程序

资源列表

« 1 2 ... .34 .35 .36 .37 .38 18739.40 .41 .42 .43 .44 ... 19301 »
  1. migong

    0下载:
  2. 迷宫问题,首先自定义建立迷宫的数据结构,迷宫数据放入矩阵中.在路线查找时,初始化栈,应用循环对每一点座标进行4个方向的判断,如果该点可达则把该点信息放入栈内,或者回溯到出栈后的坐标点,最后如果最后能够到达出口,那么栈内存储的即为走出迷宫路径-Maze problem, first of all, since the definition of the establishment of a maze of data structure, a maze of data Add matrix. Loo
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1.64kb
    • 提供者:吕璐
  1. jin

    0下载:
  2. 要求程序输出每辆车到达后的停车位置(停车场或便道),以及某辆车离开停车场时应该交纳的费用和它在停车场内停留的时间。 汽车的模拟输入信息格式可以为:(到达/离开,汽车牌照号码,到达/离开的时间)。用栈和队列来模拟停车场和便道 -Request procedures after the arrival of output per vehicle parking spaces (parking lot or sidewalk), as well as a vehicle to leave
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:1.89kb
    • 提供者:吕璐
  1. traffic

    0下载:
  2. 通过对图的应用,建立一套交通网络图,实现对求单源最短路径,任意两个城市间的最短路径的查询. 首先根据邻接矩阵和图的知识建立交通网络图,顶点信息存储城市道路信息,由图的最短路径查询城市间的最短道路,输出到达路径。 -Through the diagram, the establishment of a transportation network map, to achieve for single-source shortest path between any two cities i
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:1.73kb
    • 提供者:吕璐
  1. sort

    0下载:
  2. 通过一组相同的数据,对六种不同排序方法(冒泡排序、快速排序、直接插入排序、希尔排序、简单选择排序、堆排序、二路归并排序)的数据元素的比较和移动的次数做一个比较,并对结果作出简单分析-Through a group of the same data, sort of six different methods (bubble sort, quick sort, direct insertion sort, Hill sort, simple selection sort HEAPSORT, Roa
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:2.05kb
    • 提供者:吕璐
  1. dazi

    0下载:
  2. 关张打字问题——也是ACM培训的简单题没有,虽然很简单但是都很有代表性-Closure typing problem- ACM training is not a simple question, although very simple but very representative
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:11.21kb
    • 提供者:罗云
  1. jisuanqi

    0下载:
  2. 简单计算器——也是ACM培训的简单题没有,虽然很简单但是都很有代表性-Simple calculator- ACM training is not a simple question, although very simple but very representative
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:15.48kb
    • 提供者:罗云
  1. microphonereport

    0下载:
  2. 硬件实现扬声器 并由软件仿真 实现调节音调的功能-Hardware to achieve the realization of loudspeakers by the software simulation function of regulating tone
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:394.74kb
    • 提供者:花花
  1. MFC

    0下载:
  2. 教我们在C++环境下利用mfc进行一些简单的图形绘制-Teach us in the C++ Environment mfc to use some simple graphics rendering
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:78.24kb
    • 提供者:hg
  1. guanlixitong

    0下载:
  2. 仪器设备管理系统 仪器设备管理系统-Instrument and Equipment Management System Instrument and Equipment Management System
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1.12mb
    • 提供者:李彬
  1. eluosigaoji

    0下载:
  2. 俄罗斯方块 高级版 单人+对战+网络+合作 四种游戏模式,是俄罗斯方块的扩充版本-Premium Tetris single+ Against+ Network+ Cooperation of four game modes, the expansion of the Russian box version
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:99.03kb
    • 提供者:徐帅
  1. 1

    0下载:
  2. 1、 矩形 编写C++程序完成以下功能: (1) 定义一个Point类,其属性包括点的坐标,提供计算两点之间距离的方法; (2) 定义一个矩形类,其属性包括左上角和右下角两个点,提供计算面积的方法; (3) 创建一个矩形对象,提示用户输入矩形左上角和右下角的坐标; (4) 观察矩形对象以及Point类成员的构造函数与析构函数的调用; (5) 计算其面积,并输出 -1, rectangular prepared C++ Process is complete the f
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-09
    • 文件大小:981byte
    • 提供者:李伟
  1. kiushi2

    0下载:
  2. 编写C++程序完成以下功能: (1) 使用ofstream 向一个文本文件中输出各种类型的数据,并打开文件观察结果:  整数、无符号整型、长整型、浮点型、字符串、…… (2) 用十进制、八进制、十六进制方式向文本文件中输出整数; (3) 使用控制符和成员函数来控制输出的格式:  set() precision() -The preparation of C++ Procedures to accomplish the following
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:859byte
    • 提供者:李伟
« 1 2 ... .34 .35 .36 .37 .38 18739.40 .41 .42 .43 .44 ... 19301 »
搜珍网 www.dssz.com